标题:C 的入门级别,求助
取消只看楼主
NordicNavy
Rank: 1
来 自:地球
等 级:新手上路
帖 子:30
专家分:0
注 册:2008-10-20
 问题点数:0 回复次数:1 
C 的入门级别,求助
刚学了几天C, 我用dev c++,
安装例子写了练习题,不知道为什么不编译。。。请指教, code 如下:
#include <stdio.h>
#include <stdlib.h>
int main()
{
    float length, width;
    int fnum;
    printf("Please enter the floor number:\n");
    scanf("%d",&fnum);   
    printf("Please enter the length of the area/room:\n");
    scanf("%f", &length);
    printf("Please enter the width of the area/room:\n");
    scanf("%f", &width);   
    area(length, width, fnum);   
}
area(size, wide, num)
float size, wide;
int num;
{
    float area;
    area=size*wide;
    printf("The area of the bluiding %.2f and %d floors", area, num);
    return 0;
}
搜索更多相关主题的帖子: 入门 级别 
2008-10-20 18:36
NordicNavy
Rank: 1
来 自:地球
等 级:新手上路
帖 子:30
专家分:0
注 册:2008-10-20
得分:0 
传递参数的问题
谢谢,编译了, 虽然对这个传递参数还有点迷糊。。。
2008-10-20 19:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-239464-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014670 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved