Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
62754 乐高国际教育 算式问题 C++ Accepted 1 MS 268 KB 290 2023-12-28 19:52:03

Tests(1/1):


Code:

#include <iostream> using namespace std; int main(){ int a, b, c, d, e; for(a=10; a<13; a++){ c = 8*a; d = 9*a+1; e = 9*a; b = 100*c+d; if(b>=1000 && b<10000 && c<100 && e>=100 && e<1000) cout<<a<<endl<<b<<endl<<c<<endl<<d<<endl<<e<<endl; } }