Array Dimensi Satu |
/*filename = Program Array Dimensi Satu */
/*Oleh : fk_seven */
/*Date : 14 Agustus 2011 */
#include <stdio.h>
#include <conio.h>
#include <iostream.h>
main()
{
char pil;
int index,angka[10];
clrscr();
for(index=0;index<10;index++){
cout<<"Input angka ke "<<(index+1);
cout<<" => ";
cin>>angka[index];
}
cout<<endl;
for(index=0;index<10;index++){
cout<<"Angka Ke "<<(index+1);
cout<<" Adalah "<<angka[index]<<endl;
}
getch();
}
0 komentar:
Posting Komentar