要實現多組數據的輸入,可以使用循環結構來重復讀取數據。以下是一個示例代碼:
#include <stdio.h>
int main() {
int numSets, numElements;
printf("Enter the number of data sets: ");
scanf("%d", &numSets);
for (int i = 0; i < numSets; i++) {
printf("Enter the number of elements in data set %d: ", i+1);
scanf("%d", &numElements);
printf("Enter %d elements:\n", numElements);
for (int j = 0; j < numElements; j++) {
int element;
scanf("%d", &element);
// 處理輸入的數據
}
}
return 0;
}
在上面的示例中,首先輸入要處理的數據集的數量numSets
,然后在循環中輸入每個數據集的元素數量和具體的元素數據。在實際應用中,可以根據具體的需求修改循環結構和數據處理邏輯。