标题:计算器问题
取消只看楼主
阿百川
Rank: 2
来 自:大连
等 级:论坛游民
帖 子:18
专家分:33
注 册:2011-8-21
结帖率:100%
已结贴  问题点数:20 回复次数:1 
计算器问题
#include<stdio.h>
main()
{
double a,b;
    char c;
    scanf("%lf%c%lf",&a,&c,&b);
    switch(c)
    {
    case '+':a+=b;break;
    case '-':a-=b;break;
    case '*':a*=b;break;
    case '/':a/=b;break;
    }
    printf("%lf  ",a);
    while(1)
    {
        scanf("%c%lf",&c,&b);
        if(c=='n')
            break;
switch(c)
    {
    case '+':a=a+b;break;
    case '-':a-=b;break;
    case '*':a*=b;break;
    case '/':a/=b;break;
    }
printf("%lf  ",a);
    }
   
   return 0;}
各位高手们,这么写为什么第二次加法运算不对呢?还是我这个程序本身就不对呀。求解释
搜索更多相关主题的帖子: 计算器 include double return 计算器 include double return 
2011-09-23 16:58
阿百川
Rank: 2
来 自:大连
等 级:论坛游民
帖 子:18
专家分:33
注 册:2011-8-21
得分:0 
回复 2楼 唯我独魔
为什么乘除法能能运行呢?
2011-09-23 17:17



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




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

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