字符、数字转换
作者:
小蝴蝶
,
2022-04-04 10:42:00
,
所有人可见
,
阅读 214
#include<iostream>
using namespace std;
typedef long long LL;
int dx[10] = {2, 0, 3, 3, 1, 3, 3, 1, 3, 3};
int dy[10] = {4, 2, 2, 2, 3, 2, 3, 2, 4, 3};
int main()
{
char ch = '1';
// '0' 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 字符 与48 字符'0'亦或 得到相应数字
// 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 字符对应数字
// 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 112 亦或48之后
for(int i = 0; i <= 30; i ++)
printf("%d\n", (i + '0')^48);
printf("%c", 48);
return 0;
}