Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94639 林嘉乐 15相同数的次数 C++ Accepted 0 MS 264 KB 350 2024-10-25 19:57:18

Tests(1/1):


Code:

#include<iostream> #include<iomanip> using namespace std; int main(){ int n,xt,xl,count; n=0; xt=0; xl=0; count=0; while(n<1000) { xt++; if(xt==21) { xt=1; } xl++; if(xl==31) { xl=1; } if(xt==xl) { count++; } n++; } cout<<count<<endl; return 0; }