fork(1) download
  1. #include<stdio.h>
  2. int main(void){
  3. int x[10] = {0};
  4. printf("最初の要素の新しい値を入力してください: ");
  5. scanf("%d", &x[0]);
  6.  
  7. printf("最後の要素の新しい値を入力してください: ");
  8. scanf("%d", &x[9]);
  9.  
  10. printf("配列の内容:\n");
  11. for (int i = 0; i < 10; i++) {
  12. printf("x[%d] = %d\n", i, x[i]);
  13. }
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
最初の要素の新しい値を入力してください: 最後の要素の新しい値を入力してください: 配列の内容:
x[0] = 0
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] = 0