解题思路:
注意事项:
参考代码:
#include<math.h>
#include<stdlib.h>
#include<stdio.h>
int main()
{
int a[10], b=0, c=10, d=1, e=0, f=0;
for (int i = 0; i < 10; i++)scanf("%d", &a[i]);
while (c)
{
for (int i = 0; i < 10; i++)
{
if (d == a[i])
{
printf("%d ", a[i]);
c--;
}
}
d++;
}
return 0;
}
0.0分
0 人评分
众数问题 (C语言代码)浏览:3569 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:762 |
C二级辅导-公约公倍 (C语言代码)浏览:2158 |
小明A+B (C语言代码)浏览:1317 |
数组输出 (C语言代码)--此题的题目描述有问题浏览:1844 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:400 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:636 |
WU-输出九九乘法表 (C++代码)浏览:1853 |
打印十字图 (C语言代码)浏览:2822 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:750 |