无编辑摘要 |
无编辑摘要 |
||
第13行: | 第13行: | ||
{ | { | ||
int ec ; | int ec ; | ||
cin >> ec ; | cin >> ec ; | ||
//输入EC成立的天数 | //输入EC成立的天数 | ||
int day=0; | int day=0; | ||
while(ec) | while(ec) | ||
{ | |||
day++ ; | |||
ec -= 114 ; | |||
} | |||
if ( day == 0 ) | |||
{ | |||
cout << "Easecation马上就要倒闭啦!!!" << endl ; | |||
return 0 ; | |||
} | } | ||
else | else | ||
{ | { | ||
cout << "Easecation还有" << day << "天就要倒闭啦!!!" << endl ; | cout << "Easecation还有" << day << "天就要倒闭啦!!!" << endl ; | ||
} | } |
2024年9月6日 (五) 20:52的最新版本
EaseCation Wiki欢迎您的编辑 |
||
关于服务器屏蔽词,请见“屏蔽词替换列表”。
C++:亻尔 女子
#include <iostream>
using namespace std;
int main( )
{
int ec ;
cin >> ec ;
//输入EC成立的天数
int day=0;
while(ec)
{
day++ ;
ec -= 114 ;
}
if ( day == 0 )
{
cout << "Easecation马上就要倒闭啦!!!" << endl ;
return 0 ;
}
else
{
cout << "Easecation还有" << day << "天就要倒闭啦!!!" << endl ;
}
return 0;
//下个可以运行c++的软件,
// 带进去这篇代码发现新世界
}