#include<iostream> using namespace std; int main() { unsigned short int a = 10; cout<<sizeof(a)<<endl; //输出2 cout<<sizeof(~a)<<endl; //输出4 cout<<typeid(a).name()<<endl; //unsigned short cout<<typeid(~a).name()<<endl; //int
return 0; }
Go confidently in the directions of your dreams,live the life you have imagined!Just do it!
It is no use learning without thinking!