Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
53659 zhangsicun 数字统计 C++ 通过 0 MS 248 KB 357 2024-10-24 22:28:31

Tests(1/1):


#include <iostream> using namespace std; int main() { int L, R; cin >> L >> R; int count = 0; for (int i = L; i <= R; i++) { int t = i; while (t > 0) { if (t % 10 == 2) { count++; } t /= 10; } } cout << count << endl; return 0; }


测评信息: