解题思路:
注意事项:
参考代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int a[10];
int main()
{
for(int i=0;i<10;i++)
cin>>a[i];
getchar();
int n,res=0;
cin>>n;
sort(a,a+10);
for(int i=0;i<10;i++)
{
if(n+30>=a[i])
res++;
}
cout<<res<<endl;
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:767 |
【数组的距离】 (C语言代码)浏览:787 |
数组输出 (C语言代码)--此题的题目描述有问题浏览:1844 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:900 |
【排队买票】 (C语言代码)浏览:944 |
WU-拆分位数 (C++代码)浏览:819 |
【明明的随机数】 (C语言代码)浏览:845 |
C语言训练-自由落体问题 (C语言代码)浏览:650 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |
P1000 (C语言代码)浏览:911 |