K12教育赛事综合服务平台
聚乐之家官方网站
下载聚乐之家官方App
专注青少年竞赛题库网站
int i; for (i = 0; i < 10; i++) cout << i;
int i = 0; while (i < 10){ cout << i; i += 1; }
int i = 0; while (i < 10){ i += 1; cout << i; }
int i = 0; while (true){ cout << i; i += 1; if (i >= 10) break; }
int i = 0; while (true){ if (i >= 10) break; cout << i; i += 1; }