fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // my code go here
  5.  
  6. int lucky,count,i,data[11];
  7.  
  8. for(i=0;i<10;i++){
  9. scanf("%d",&data[i]);
  10. printf("%d人目の点数:%d\n",i+1,data[i]);
  11. }
  12. for(lucky=0;lucky<10;lucky++){
  13. count=0;
  14. for(i=0;i<10;i++){
  15. if(data[i]<data[lucky]){
  16. count++;
  17. }
  18. }
  19. if(count==1){
  20. printf("\n9位:%d人目\n",lucky+1);
  21. }
  22.  
  23. }
  24.  
  25. return 0;
  26. }
  27.  
Success #stdin #stdout 0.01s 5284KB
stdin
1
2
3
4
5
6
7
8
9
10

stdout
1人目の点数:1
2人目の点数:2
3人目の点数:3
4人目の点数:4
5人目の点数:5
6人目の点数:6
7人目の点数:7
8人目の点数:8
9人目の点数:9
10人目の点数:10

9位:2人目