首页 > 代码库 > 函数没定义
函数没定义
Q:
#include<stdio.h>
int main()
{
char A,B,C,D,s;
float z;
float x,y;
printf("if you want add input A\nsubtraction input B\nThe multiplication input C\ndivision input D\n");
scanf("%c",&s);
scanf("%f%f",&x,&y);
if (s==A)
{
he(x,y);
}
if (s==B)
{
cha(x,y);
}
if (s==C)
{
ji(x,y);
}
if (s==D)
{
shang(x,y);
}
return(0);
}
void he(float x,float y
{
float z;
z=x+y;
printf("liang ge shu de he is %f",z );
}
void cha(float x,float y)
{
float z;
z=x-y;
printf("liang ge shu de cha is %f",z );
}
void ji(float x,float y)
{
float z;
z=x*y;
printf("liang ge shu de ji is %f",z );
}
void shang(float x,float y)
{
float z;
z=x/y;
printf("liang ge shu de shang is %f",z );
}
老师,这个哪里错了?
A:
A,B,。。要写成‘A‘
main()中你对函数没有声明
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。