document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include<iostream.h>
  2. #include<conio.h>
  3.  
  4. int main()
  5. {
  6.    int n[3]={1,22,82};
  7.    for(int i=0;i<3;i++)
  8.    {
  9.       cout<<"Array indeks ke - "<<i<<" = "<<n[i];
  10.       cout<<endl;
  11.    }
  12. getch();
  13. return 0;
  14. }
');