Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include<iostream>
  2. #include<conio.h>
  3.  
  4. using namespace std;
  5.  
  6. void main()
  7. {
  8.    int nilai[5];
  9.    for(int a=0;a<5;a++)
  10.    {
  11.     cout<<"masukkan data nilai UAS["<<a<<"] = ";
  12.     cin>>nilai[a];
  13.    }
  14.    for(int b=0;b<5;b++)
  15.    {
  16.     cout<<"data nilai UAS["<<b<<"]= "<<nilai[b]<<endl;
  17.    }
  18.    getchar();
  19.    system("pause");
  20. }