fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a,i,data[10],lucky,count=0;
  5. printf("十人分の点数を入力してください。\n");
  6. for(i=0;i<10;i++){
  7. scanf("%d",&data[i]);
  8. }
  9. for(lucky=0;lucky<10;lucky++){
  10. if(data[i]<data[lucky]){
  11. count++;
  12.  
  13. }
  14. if(count==1){
  15. printf("9位:%d人目\n",lucky+1);
  16. }
  17.  
  18. }
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5300KB
stdin
23 42 12 11 1 44 56 76 78 98
stdout
十人分の点数を入力してください。
9位:1人目