在本教程中,我们将讨论一个寻找世纪的程序。
为此,我们将获得一年的服务。我们的任务是找到给定年份的世纪。
#include <bits/stdc++.h>
using namespace std;
void find_century(int year){
//年份值只能是正数
if (year <= 0)
cout << "0 and negative is not allow"
<< "for a year";
else if (year <= 100)
cout << "1st century\n";
else if (year % 100 == 0)
cout << year/ 100 <<" century";
else
cout << year/ 100 + 1 << " century";
}
int main(){
int year = 2001;
find_century(year);
return 0;
}输出结果
21 century