Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
55256 | zhangweiran | 【基础题】余数为1 | C | Compile Error | 0 MS | 0 KB | 185 | 2024-11-03 22:33:15 |
#include<iostream> using namespace std; int main() { int i,result; for(i=0;i<10;i++){ int result=2*3*5*i+1; printf("%d,",result); } return 0; }