c语言 定义一个函数。该函数接受一个int参数,并以long类型返回参数的平方值 详细说明一下,拜托

2024年11月16日 15:28
有1个网友回答
网友(1):

long fuck ( int x )
{
long y = x * x;
return y;
}