首页 > 其他 > 详细

函数没定义

时间:2014-06-10 20:16:07      阅读:333      评论:0      收藏:0      [点我收藏+]

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()中你对函数没有声明

函数没定义,布布扣,bubuko.com

函数没定义

原文:http://www.cnblogs.com/lpjia/p/3779385.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!