问题描述
本题为填空题,只需要算出结果后,在代码中使用输出语句将所填结果输出即可。
已知今天是星期六,请问 20222022 天后是星期几?
注意用数字 11 到 77 表示星期一到星期日。
运行限制
-
最大运行时间:1s
-
最大运行内存: 512M
#include <iostream>
using namespace std;
int main()
{
int n = 1 ;
for(int i = 1 ; i <= 22 ; i++){
n *= 20;
n %= 7 ;
}
n += 6;
if(n % 7 == 0){
cout << n <<endl;
}else{
cout<< n % 7 <<endl;
}
return 0;
}