1 条题解

  • 1
    @ 2023-10-23 14:49:37

    #include<bits/stdc++.h> using namespace std; int a,b; char l; int main(){ cin>>a>>b>>l; if(l=='+'){ cout<<a+b; return 0; } if(l=='-'){ cout<<a-b; return 0; } if(l==''){//加星号; cout<<ab;//加星号; return 0; } if(l=='/'){ cout<<a/b; return 0; } cout<<"Invalid operator!"; return 0; }

    • 1

    信息

    ID
    58
    时间
    1000ms
    内存
    128MiB
    难度
    9
    标签
    (无)
    递交数
    11
    已通过
    6
    上传者