fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a[10],i,count,k,lucky;
  6. for(i=0;i<10;i++){
  7. scanf("%d",&a[i]);
  8. printf("%d人目の点数:%d\n",i+1,a[i]);
  9. }
  10. for(lucky=0;lucky<10;lucky++){
  11. count=0;
  12. for(k=0;k<10;k++){
  13. if(a[k]<a[lucky])
  14. count++;
  15. }
  16. }
  17. if(count==1){
  18. printf("9位:%d人目",lucky+1);
  19. }
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 5300KB
stdin
25
39
42
76
35
48
81
41
74
55
stdout
1人目の点数:25
2人目の点数:39
3人目の点数:42
4人目の点数:76
5人目の点数:35
6人目の点数:48
7人目の点数:81
8人目の点数:41
9人目の点数:74
10人目の点数:55