在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
16进制的简单运算时间限制:65535 KB
难度:1
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 }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论