鱼C论坛

 找回密码
 立即注册
查看: 514|回复: 2

[已解决]加减乘除

[复制链接]
发表于 2020-4-25 22:56:08 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 沐丶心 于 2020-4-25 23:46 编辑

写了半天
结果一输入字母(a,s,m,d,)就选择default的选项
有没有大佬帮忙找找错
#include <stdio.h>
void pr();
float add();//加
float subtract();//减
float multiply();//乘法
float divide();//除
char wdnmd();
float first();
float last();
int main()
{
    pr();
    char ch;
    while((ch = wdnmd()) != 'q')
    {
        switch (ch)
        {
        case 'a':add();break;
        case 's':subtract();break;
        case 'm':multiply();break;
        case 'd':divide();break;
        default:printf("非法输入,请重新输入:");continue;
        }

    }
    printf("game over");
    return 0;
}
void pr()
{
    printf("Enter the operation of your choice:\n");
    printf("a. add(+)         s. subtract(-)\n");
    printf("m. mulit(*)       d. divide(/)\n");
    printf("q. quit\n");
}
char wdnmd()
{
        char ch;
        ch = getchar();
        while(getchar() != '\n')
        continue;
        return ch;
}
float first()
{
    float lbw;
    char ch;
    printf("Enter first number:");
    while(scanf("%f", &lbw) == 0)
    {
        while((ch=getchar()) != '\n')
        putchar(ch);
        printf("is not an number\nplease enter a number, such as 2.5, -1.78E8, or 3:1:");
    }
    while(getchar()!= '\n')
        continue;

    return lbw;
}
float last()
{
    float lbw; 
    char ch;
    printf("Enter first number:");
    while(scanf("%f", &lbw) == 0)
    {
        while((ch=getchar()) != '\n')
        putchar(ch);
        printf("is not an number.\nplease enter a number, such as 2.5, -1.78E8, or 3:1:");
    }
    while(getchar()!= '\n')
        continue;

    return lbw;
}
float add()
{
    float a = first();
    float b = last();
    printf("%.2f + %.2f = %.2f\n", a, b, a+b);
}
float subtract()
{
    float a = first();
    float b = last();
    printf("%.2f - %.2f = %.2f\n", a, b, a-b);
}
float multiply()
{
    float a = first();
    float b = last();
    printf("%.2f * %.2f = %.2f\n", a, b, a*b);
}
float divide()
{
   
    float a = first();
    float b = last();
    if(b == 0)
    {
        printf("除数不能为0,请重新输入:");
        scanf("%f", &b);
    }
    printf("%.2f / %.2f = %.2f\n", a, b, a/b);
}

   
最佳答案
2020-4-25 23:06:13
#include <stdio.h>
void pr();
float add();//加
float subtract();//减
float multiply();//乘法
float divide();//除
char wdnmd();
float first();
float last();
int main()
{
    pr();
    char ch;
    //while(ch = wdnmd() != 'q')
    while((ch = wdnmd()) != 'q')
    {
        switch (ch)
        {
        case 'a':add();break;
        case 's':subtract();break;
        case 'm':multiply();break;
        case 'd':divide();break;
        default:printf("非法输入,请重新输入:");continue;
        }

    }
    printf("game over");
    return 0;
}
void pr()
{
    printf("Enter the operation of your choice:\n");
    printf("a. add(+)         s. subtract(-)\n");
    printf("m. mulit(*)       d. divide(/)\n");
    printf("q. quit\n");
}
char wdnmd()
{
        char ch;
        ch = getchar();
        while(getchar() != '\n')
        continue;
        return ch;
}
float first()
{
    float ch;
    printf("Enter first number:");
    while((ch = getchar()) == 0)
    {
        while(getchar() != '\n')
        putchar(ch);
        printf("is not an number\nplease enter a number, such as 2.5, -1.78E8, or 3:1:");
    }
    while(getchar()!= '\n')
        continue;

    return ch;
}
float last()
{
    float ch;
    printf("Enter first number:");
    while((ch = getchar()) == 0)
    {
        while(getchar() != '\n')
        putchar(ch);
        printf("is not an number.\nplease enter a number, such as 2.5, -1.78E8, or 3:1:");
    }
    while(getchar()!= '\n')
        continue;

    return ch;
}
float add()
{
    float a = first();
    float b = last();
    printf("%.2f + %.2f = %.2f\n", a, b, a+b);
}
float subtract()
{
    float a = first();
    float b = last();
    printf("%.2f + %.2f = %.2f\n", a, b, a-b);
}
float multiply()
{
    float a = first();
    float b = last();
    printf("%.2f + %.2f = %.2f\n", a, b, a*b);
}
float divide()
{
   
    float a = first();
    float b = last();
    if(b == 0)
    {
        printf("除数不能为0,请重新输入:");
        scanf("%f", &b);
    }
    printf("%.2f + %.2f = %.2f\n", a, b, a/b);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-25 23:06:13 | 显示全部楼层    本楼为最佳答案   
#include <stdio.h>
void pr();
float add();//加
float subtract();//减
float multiply();//乘法
float divide();//除
char wdnmd();
float first();
float last();
int main()
{
    pr();
    char ch;
    //while(ch = wdnmd() != 'q')
    while((ch = wdnmd()) != 'q')
    {
        switch (ch)
        {
        case 'a':add();break;
        case 's':subtract();break;
        case 'm':multiply();break;
        case 'd':divide();break;
        default:printf("非法输入,请重新输入:");continue;
        }

    }
    printf("game over");
    return 0;
}
void pr()
{
    printf("Enter the operation of your choice:\n");
    printf("a. add(+)         s. subtract(-)\n");
    printf("m. mulit(*)       d. divide(/)\n");
    printf("q. quit\n");
}
char wdnmd()
{
        char ch;
        ch = getchar();
        while(getchar() != '\n')
        continue;
        return ch;
}
float first()
{
    float ch;
    printf("Enter first number:");
    while((ch = getchar()) == 0)
    {
        while(getchar() != '\n')
        putchar(ch);
        printf("is not an number\nplease enter a number, such as 2.5, -1.78E8, or 3:1:");
    }
    while(getchar()!= '\n')
        continue;

    return ch;
}
float last()
{
    float ch;
    printf("Enter first number:");
    while((ch = getchar()) == 0)
    {
        while(getchar() != '\n')
        putchar(ch);
        printf("is not an number.\nplease enter a number, such as 2.5, -1.78E8, or 3:1:");
    }
    while(getchar()!= '\n')
        continue;

    return ch;
}
float add()
{
    float a = first();
    float b = last();
    printf("%.2f + %.2f = %.2f\n", a, b, a+b);
}
float subtract()
{
    float a = first();
    float b = last();
    printf("%.2f + %.2f = %.2f\n", a, b, a-b);
}
float multiply()
{
    float a = first();
    float b = last();
    printf("%.2f + %.2f = %.2f\n", a, b, a*b);
}
float divide()
{
   
    float a = first();
    float b = last();
    if(b == 0)
    {
        printf("除数不能为0,请重新输入:");
        scanf("%f", &b);
    }
    printf("%.2f + %.2f = %.2f\n", a, b, a/b);
}

评分

参与人数 1鱼币 +5 贡献 +3 收起 理由
沐丶心 + 5 + 3

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2020-4-25 23:10:53 | 显示全部楼层

谢谢人造人老师
小细节太重要了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 19:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表