摘要: #include<iostream>using namespace std;int main(){ char a; cin >> a; cout <<char(a+1)<<char(a+2); return 0;} 阅读全文
posted @ 2021-09-23 11:23 Leeeeeeeeeeeeee 阅读(185) 评论(0) 推荐(0)
摘要: #include<iostream>using namespace std;int main(){ char a; cin >> a; cout << int(a); return 0;} 阅读全文
posted @ 2021-09-23 11:21 Leeeeeeeeeeeeee 阅读(871) 评论(0) 推荐(0)
摘要: #include<iostream>using namespace std;int main(){ char a,b; cin >> a >> b; cout << a << endl << b << endl; return 0;} 阅读全文
posted @ 2021-09-23 10:31 Leeeeeeeeeeeeee 阅读(421) 评论(0) 推荐(0)
摘要: #include<iostream>using namespace std;int main(){ double a; cin >> a; cout << int(a) << " " << a - int(a); return 0;} 阅读全文
posted @ 2021-09-23 10:28 Leeeeeeeeeeeeee 阅读(384) 评论(0) 推荐(0)