Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102547 陈治宸 15相同数的次数 C++ Accepted 1 MS 264 KB 307 2024-12-22 09:30:34

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { int n,xt,xl,count; n=xt=xl=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; }