码迷,mamicode.com
首页 > 其他好文 > 详细

函数没定义

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

标签:cti   amp   har   div   io   rac   

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

函数没定义

标签:cti   amp   har   div   io   rac   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!