首页
编程
java
php
前端
首页
编程
java
php
前端
用函数调用,求某整数的平方
求某整数的平方,要求在主函数中输入一个数,然后调用pf( )函数,并返回平均值,在pf( )函数中求该数的平方
int
pf
(
int
a)
{
return
a * a; }
点击展开全文