华师一附中OI组

标题: 0017C班第二次 [打印本页]

作者: admin    时间: 2022-1-17 17:06
标题: 0017C班第二次
字符串  string
整数   int
实数  float
布尔   bool
字符   char


floor
ceil
abs(x)
sqrt(x) sqrt(9)=3

字符 和 ascii 码
A  65   a  97
B  66   b  98
0  48   9  57



作者: admin    时间: 2022-1-17 17:06

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. char c;
  4. int main()
  5. {
  6.         cin>>c;
  7.         cout<<c-'A'+1;
  8.         return 0;
  9. }

  10. #include <bits/stdc++.h>
  11. using namespace std;
  12. int x;
  13. int main()
  14. {
  15.         cin>>x;
  16.         cout<<char('A'+x-1);
  17.         return 0;
  18. }
复制代码

作者: admin    时间: 2022-1-17 17:08
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. char ch;
  4. int x;
  5. int main()
  6. {
  7.         cin>>ch;x=ch;cout<<x;
  8.         return 0;
  9. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2