第一次发帖,也是 C 的初学者。我的问题是如何打印未知数量的结果?以这段代码为例:
#include <stdio.h>
int main(void)
{
int a,b,c;
b=0;
printf("Enter the number of terms: ");
scanf("%d", &a);
for(b=0; b<=a; ++a)
{
printf("\n\nEnter the value of each term: ");
scanf("%d",&c);
}
printf("\n\n%d",c);
return(0);
}
我想打印最后输入的所有值,但 Idk 如何调整它以便打印 1,2 等值。
PS我怎样才能在while循环中使用fprintf来做到这一点。