例题2.5

Posted on 2017-09-21 09:21  dragonliu欧美  阅读(147)  评论(0编辑  收藏  举报
1 #include<iostream>
2 using namespace std;
3 int main(){
4  unsigned short a;
5  short int b=-2;
6  a=b;
7  cout<<"a="<<a<<endl;
8  return 0; 
9 }