TA的每日心情 | 汗 2024-10-15 10:05 |
---|
签到天数: 372 天 [LV.9]以坛为家II
|
代码示例:- #include <stdio.h>
- int main () {
-
- int temp_i = 0;
- int temp_j = 0;
-
- while (temp_i <= 0) {
-
- printf("请输入好友列表数:");
- scanf("%d", &temp_i);
-
- while (temp_j <= 0) {
-
- printf("请输入好友数:");
- scanf("%d", &temp_j);
- }
- }
- // printf("temp_i=%d,temp_j=%d\n", temp_i, temp_j);
- for (int i = 0; i < temp_i; i++) {
- printf("好友列表%d\n", i+1);
-
- for (int j = 0; j < temp_j; j++) {
- printf(" 好友%d\n",j+1);
- }
- }
-
- return 0;
- }
复制代码 运行结果:- 请输入好友列表数:3
- 请输入好友数:5
- 好友列表1
- 好友1
- 好友2
- 好友3
- 好友4
- 好友5
- 好友列表2
- 好友1
- 好友2
- 好友3
- 好友4
- 好友5
- 好友列表3
- 好友1
- 好友2
- 好友3
- 好友4
- 好友5
复制代码
|
|