在C語言中,可以使用循環結構和scanf()函數來往數組里輸入數字。以下是一個示例代碼:
#include <stdio.h>
#define SIZE 5
int main() {
int arr[SIZE];
int i;
printf("請輸入%d個數字:\n", SIZE);
for (i = 0; i < SIZE; i++) {
scanf("%d", &arr[i]);
}
printf("輸入的數字為:");
for (i = 0; i < SIZE; i++) {
printf("%d ", arr[i]);
}
return 0;
}
首先,定義一個大小為SIZE的整型數組arr
。使用循環結構,從0到SIZE-1遍歷數組的每個元素,通過scanf()函數將用戶輸入的數字存儲到對應的數組元素中。
注意,scanf()函數中使用%d
來讀取整數,并在變量前面加上&
來獲取地址。
最后,使用循環結構遍歷數組,按順序輸出輸入的數字。