70,037
社区成员
发帖
与我相关
我的任务
分享int f()//返回值为int型
{
return 1;//把1返回给调用它的地方
}
int main()//返回值为int型
{
int a = f();//f()返回1到此处,a获得值1
return a;//把a的值返回给系统
}int f()//返回值为int型
{
return 1;//把1返回给调用它的地方
}
int main()//返回值为int型
{
int a = f();//f()返回1到此处,a获得值1
return a;//把a的值返回给系统
}