fork download
  1. #include <stdio.h>
  2. int main(void) {
  3.  
  4. int x[10];
  5. int i,j,n;
  6.  
  7. for (i=0;i<10;i++){
  8. scanf("%d",&x[i]);
  9. printf("%d人目の点数は、%dです。\n",i+1,x[i]);
  10. }
  11.  
  12. for (i=0;i<10;i++){
  13. n=0;
  14. for(j=0;j<10;j++){
  15. if (x[i]>x[j])
  16. n=n+1;
  17. }
  18. if(n==1)
  19. printf("ラッキーな人は%d人目です。",i+1);
  20. }
  21.  
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 5284KB
stdin
2
31
4
53
6
7
8
9
10
stdout
1人目の点数は、2です。
2人目の点数は、31です。
3人目の点数は、4です。
4人目の点数は、53です。
5人目の点数は、6です。
6人目の点数は、7です。
7人目の点数は、8です。
8人目の点数は、9です。
9人目の点数は、10です。
10人目の点数は、5377です。
ラッキーな人は3人目です。