#include "stdafx.h"
#include "conio.h"
#include "iostream"
#include "stdio.h"
using namespace std;
void CompleteSquare();
int _tmain(int argc, _TCHAR* argv[])
{
CompleteSquare();
getch();
}
void CompleteSquare()
{
for(int i=8;i<=15;i++)
cout<<i*i<<endl;
getch();
}
Thursday, July 18, 2013
Unknown
Posted in
0 comments :
Post a Comment