Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
1610 A班-过懿萱 山形数 C++ 通过 100 1 MS 256 KB 312 2024-12-07 11:00:59

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main() { for(int i = 100;i <= 999;i++) { int bai,shi,ge; bai = i / 100; shi = i / 10 % 10; ge = i % 10; if(bai < shi && ge < shi) { cout<<i<<endl; } } return 0; }


测评信息: