首页 > 代码库 > (HDU)1283 -- 最简单的计算机
(HDU)1283 -- 最简单的计算机
题目链接:http://vjudge.net/problem/HDU-1283
1 #include <cstdio> 2 #include <cstring> 3 #include <cmath> 4 #include <iostream> 5 #include <algorithm> 6 #include <string> 7 #include <cstdlib> 8 9 using namespace std; 10 11 int main() 12 { 13 int m1,m2,len,i; 14 char str[250]; 15 while(~scanf("%d %d",&m1,&m2)) 16 { 17 int r1=0,r2=0,r3=0; 18 getchar(); 19 scanf("%s",str); 20 len=strlen(str); 21 for(i=0;i<len;i++) 22 { 23 if(str[i]==‘A‘) r1=m1; 24 else if(str[i]==‘B‘) r2=m2; 25 else if(str[i]==‘C‘) m1=r3; 26 else if(str[i]==‘D‘) m2=r3; 27 else if(str[i]==‘E‘) r3=r1+r2; 28 else if(str[i]==‘F‘) r3=r1-r2; 29 } 30 printf("%d,%d\n",m1,m2); 31 } 32 return 0; 33 }
(HDU)1283 -- 最简单的计算机
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。