// Calculator App.cpp : Defines the exported functions for the DLL application.
//

#include "stdafx.h"

using namespace std;

int main()
{
cout <<"Plumps Calculator!" << endl;
return 0;
}

using namespace std;

int main ()
{
int x = 0;
while(x < 10) {
double y = sqrt((double)x);
cout << "The Sqaure root of" << x << "equals" << y <<endl;
x++;
}
return 0;
}

Simple sqrt program