fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a,b;
  5. int x[10]={0};
  6. scanf("%d",&a);
  7. printf("最初の要素%d\n",a);
  8. scanf("%d",&b);
  9. printf("最後の要素%d\n",b);
  10. for(int i;i<10;i++){
  11. if(i==0){
  12. x[i]=a;
  13. }
  14. else if(i==9){
  15. x[i]=b;
  16. }
  17. printf("x[%d]=%d\n",i,x[i]);
  18. }
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5276KB
stdin
2
9
stdout
最初の要素2
最後の要素9
x[0]=2
x[1]=0
x[2]=0
x[3]=0
x[4]=0
x[5]=0
x[6]=0
x[7]=0
x[8]=0
x[9]=9