/* HELLO.C -- Hello, world */
#include "stdio.h"
#include "conio.h"
main()
{int b;
int c[4];
int a=0;
b=0;
while(b<=3)
{
scanf("%d",&c[b]);
b++;}
printf("\n \n \n so good %d,%d,%d,%d.",c[0],c[1],c[2],c[3]);
getch();
}
本文介绍了一个简单的C语言程序,展示了如何通过键盘输入数据,并将其存储到数组中,然后输出这些数据。
9425





