做题
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main()
{
char a;
cin >>a;
int x=a;
cout <<x<<'\n';
}
我之前吧int x和x=a分开,结果输入什么字符都给我输出0!
于是我经过数以百计的尝试摸索出来:要把它们合在一起编
虽然我摸索出来了,但是还是非常不理解:为什么分开写不行?
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main()
{
char a;
cin >>a;
int x=a;
cout <<x<<'\n';
}
我之前吧int x和x=a分开,结果输入什么字符都给我输出0!
于是我经过数以百计的尝试摸索出来:要把它们合在一起编
虽然我摸索出来了,但是还是非常不理解:为什么分开写不行?
相关推荐