Friday, 5 July 2013

Write a program of countdown and display blast.

#include<iostream>
using namespace std;
int main()
{
for(int i=10;i>=0;i--)
{
cout<<i<<endl;
}
cout<<"Blast!";
}

No comments:

Post a Comment