题解 | #实现简单计算器功能#

实现简单计算器功能

https://www.nowcoder.com/practice/e7c08272a4b7497fb990ce7abb1ee952

#include <iostream>
#include <string>
#include <string.h>
using namespace std;

int main() {
    string str;
    int m,n;
    cin>>str>>m>>n;
    for(auto& i:str)
        i=tolower(i);
    if(str=="add")
        cout<<m+n;
    if(str=="sub")
        cout<<m-n;
    if(str=="mul")
        cout<<m*n;
    if(str=="div"){
        if(n==0)
            cout<<"Error";
        else cout<<m/n;
    }
    return 0;
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 18:54
说等下个版本吧的发呆爱好者很贪睡:佬最后去了哪家呀
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务