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

实现简单计算器功能

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;
}
全部评论

相关推荐

贪食滴🐶:你说熟悉扣篮的底层原理,有过隔扣职业球员的实战经验吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务