文章
82
粉丝
344
获赞
28
访问
696.0k
#include <iostream>
#include <string>
using namespace std;
string s;
int f(string s){
if(s=="zero") return 0;
if(s=="one") return 1;
if(s=="two") return 2;
if(s=="three") return 3;
if(s=="four") return 4;
if(s=="five") return 5;
if(s=="six") return 6;
if(s=="seven") return 7;
if(s=="eight") return 8;
if(s=="nine") return 9;
}
int main(){
int flag=0;
int a=0,b=0;
while(cin>>s){
if(s=="+"){
flag=1;
}
else if(s=="="){
flag=0;
if(a==0&&...
登录后发布评论
暂无评论,来抢沙发