Friday, 11 December 2015

Write a program which display Pakistan 5 times with loop structure

#include<iostream>
#include<conio.h>
using namespace std;
int main()
{  int a;
a=1;
do
{ cout<<a<<"=Pakistan"<<endl;
a++;
}while(a<=5); getch();

}

No comments:

Post a Comment