c语言中比如f(x)=x 的f(x)怎么定义?

2024-11-20 13:43:52
推荐回答(3个)
回答(1):

datatype:数据类型
/*无返回值方法*/
void f( datatype x);// 声明
void f( datatype x)
{
}
/*有返回值方法*/
datatype f( datatype x);// 声明
datatype f( datatype x)
{
return (返回值);
}

回答(2):

定义函数,需要指明返回值、函数名,参数列表,并在大括号内给出函数实现。如:
int f(int x)
{
return x;
}
函数的具体说明参照你的教材上的函数部分。

回答(3):

f(x)=x 你是不是可以理解成y=x呢?
在C语言里不就是int a,b;a=b;