1.在C/C++中一个数开平方
int a=4;
printf("%d",sqrt(a))
2.字符转换ASCII码
char ch='a';
cout<<(int)ch<<endl;
其中a为97,A为65
相关推荐