博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2020年11月24日

摘要: include<stdio.h> include<stdlib.h> include<time.h> int main() { int a, i, b; srand(time(0)); a = rand(); for (i = 1; i ⇐ 99; i++) { b = rand(); if (a 阅读全文

posted @ 2020-11-24 07:39 勤劳勇敢懒羊羊 阅读(23) 评论(0) 推荐(0) 编辑

摘要: include<stdio.h> int main() { int sum = 0, allsum = 0; for (int i = 1; i ⇐ 50; i++) { for (int j = 1; j ⇐ i; j++) { sum += j; } allsum += sum; } print 阅读全文

posted @ 2020-11-24 07:37 勤劳勇敢懒羊羊 阅读(27) 评论(0) 推荐(0) 编辑

摘要: include<stdio.h> int main() { int a, b, c, d, i = 0; for (a = 0; a ⇐ 9; a++) for (b = 0; b ⇐ 9; b++) for (c = 0; c ⇐ 9; c++) for (d = 0; d ⇐ 9; d++) i 阅读全文

posted @ 2020-11-24 07:35 勤劳勇敢懒羊羊 阅读(28) 评论(0) 推荐(0) 编辑