给定一系列正整数,请按要求对数字进行分类,并输出以下 5 个数字:
每个输入包含 1 个测试用例。每个测试用例先给出一个不超过 1000 的正整数 N,随后给出 N 个不超过 1000 的待分类的正整数。数字间以空格分隔。
对给定的 N 个正整数,按题目要求计算 A1~A5 并在一行中顺序输出。数字间以空格分隔,但行末不得有多余空格。
若其中某一类数字不存在,则在相应位置输出 N
。
13 1 2 3 4 5 6 7 8 9 10 20 16 18
结尾无空行
30 11 2 9.7 9
结尾无空行
8 1 2 4 5 6 7 9 16
结尾无空行
N 11 2 N 9
结尾无空行
代码:
#include<stdio.h> int main() { int a,sum=0,sx=0,count=0,max=0,i=0,j=0,x=0,y=0; float aver=0; int n; scanf("%d",&n);//下面用while循环的话就不用输入这个n了,这里输入只是为了符合格式 while(scanf("%d",&a)!=EOF) { if(a%5==0) {if(a%2==0) {sum += a;i++;}} if(a%5==1) {j++;if(j%2==1) sx += a;else sx -= a;} if(a%5==2) {count++;} if(a%5==3) {x++;aver += a;} if(a%5==4) {if(max<a) {max=a;y++;}} } if(i) printf("%d ",sum); else printf("N "); if(j) printf("%d ",sx); else printf("N "); if(count) printf("%d ",count); else printf("N "); if(x) printf("%.1f ",aver/x); else printf("N "); if(y) printf("%d",max); else printf("N"); }//输出写的复杂了点