// array int, for<br>รับค่าลงอาเรย์แบบ int และนำมาแสดง โดยใช้ for ช่วย
/* http://www.thaiall.com/tc */
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
int x[3];
for
(int i=0;i<3;i++) cin >> x[i];
(i=0;i<3;i++) cout << x[i] <<
"\n"
;
getch();
}