标签:iostream others 表达 cin als std des edit ace
3 29+4823 18be+6784 4ae1-3d6c
44114 100102 6565
1 /* 2 Name: NYOJ--244--16进制的简单运算 3 Copyright: ?2017 日天大帝 4 Author: 日天大帝 5 Date: 01/05/17 16:18 6 Description: 看过题,以为很复杂,但是跟这个难度不匹配,竟然没有想到,,, 7 顺便学了C++输入输出的格式控制 8 */ 9 #include<iostream> 10 #include<iomanip> 11 #include<cstdio> 12 using namespace std; 13 int main(){ 14 ios::sync_with_stdio(false); 15 int t;cin>>t; 16 while(t--) { 17 int x,y; 18 char op; 19 cin>>hex>>x>>op>>y; 20 if(op == ‘+‘)cout<<setbase(8)<<(x+y)<<endl; 21 else cout<<setbase(8)<<(x-y)<<endl; 22 } 23 return 0; 24 }
NYOJ--244--16进制的简单运算(C++控制输入输出)
标签:iostream others 表达 cin als std des edit ace
原文地址:http://www.cnblogs.com/rtdd/p/6792274.html