-
C++
program fount squre numper
job this program inputt two numper frist numper is asas and scend numper is oss then print the result
14:28 Aug 06 2010 | Tags :
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x,s,f;
cout<<"enter you numper need squre\n";
cin>>x;
cout<<"inter squre";
cin>>s;
f=pow(x,s);
cout<<"the squre "<<x<<"="<<f<<endl;
return 0;
}
Add comment
To add a comment, please : Login or Sign up