为了账号安全,请及时绑定邮箱和手机立即绑定

c++平方问题

从键盘输入5个数,求五个数的平方,并输出。

要求:

1.使用cin cout输入输出

2.编写求平方的函数 函数原型为int pow(x)

3.调用函数求得输入的5个数的平方


正在回答

1 回答

#include <iostream>

using namespace std;

int pow(int a)

{

a=a*a;

    return a;

}

int main()

{

int a,b,c,d,e;

cin>>a>>b>>c>>d>>e;

cout<<pow(a)<<endl<<pow(b)<<endl<<pow(c)<<endl<<pow(d)<<endl<<pow(e)<<endl;

system("pause");

return 0;

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之起航篇
  • 参与学习       291032    人
  • 解答问题       760    个

C++亮点尽在其中,本课程是在C语言基础上的一个延伸,得以升华

进入课程

c++平方问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信