| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 515 人关注过本帖
标题:根据内容编的程序,请大家来找茬!!
取消只看楼主 加入收藏
csbeng001
Rank: 1
来 自:湖南长沙市
等 级:新手上路
帖 子:15
专家分:0
注 册:2011-9-13
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
根据内容编的程序,请大家来找茬!!
一个产品有两个版本,一个高级,5.5元,标准3.5元。提示用户输入产品版本和数量 ,然后根据输入的信息,算出价格。

#include <stdio.h>
int main(void)
{
    enum mobel{good,bad};
    float good =5.5;
    float bad =3.5;
    float pirce = 0.0f;
    int num =0;
    printf("Please enter the mobel\"good or bad\" and the number of book!");
    scanf("%c",&mobel);
    scanf("%d",&num);
    pirce = mobel * num;
    printf("You choose mobel is %c,the number is %d,and the price is %.2f\n",mobel,num,pirce);
    return 0;
}

这个是我根据内容来编的程序,请大家来找茬!!
搜索更多相关主题的帖子: 大家来找茬 
2011-09-28 14:36
csbeng001
Rank: 1
来 自:湖南长沙市
等 级:新手上路
帖 子:15
专家分:0
注 册:2011-9-13
收藏
得分:0 
回复 3楼 TonyDeng
谢谢,不过你的太高深了~~
看不懂~~
我只看了C语言入门经典 第四版,霍顿的。前两章内容,所以你所写的内容大部份我都没有看过~~~,更不能理解你的意思了~~~~
不过还是辛苦你了
2011-09-28 16:29
csbeng001
Rank: 1
来 自:湖南长沙市
等 级:新手上路
帖 子:15
专家分:0
注 册:2011-9-13
收藏
得分:0 
回复 5楼 TonyDeng
怎么说了,是我把问题想的太复杂了,下面这段是答案,
#include <stdio.h>
int main(void)
{
    double total_price =0;
    int type =0;
    int number =0;
    const double type1_price =3.5;
    const double type2_price =5.5;

    printf("Please choose the type (1 or 2): \n");
    scanf("%d",&type);
    printf("Enter the number: ");
    scanf("%d",&number);
    total_price = number * (type1_price + (type -1)*(type2_price-type1_price));
    printf("You choose %d of type %d ,and shold pay $%.2f .\n",number ,type ,total_price);
    return 0;
}
2011-09-29 11:33
快速回复:根据内容编的程序,请大家来找茬!!
数据加载中...
 
   



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

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