我是 C++ 新手,我有一个小项目,我应该从用户那里获得 10 个数字,然后显示结果。
所以我写了这段代码:
#include<stdio.h>
int main() {
int counter=1,
allNumbers;
float score;
while(counter <= 10) {
scanf("%f",&score);
counter++;
}
printf("Your entered numbers are : %s\n",allNumber);
}
例如用户输入 2 3 80 50 ... 我想在结果中显示 2,3,80,50,...。
但我不知道我该怎么办!