Thursday 18 July 2013


#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();
}

0 comments :

Post a Comment