第二章 例2.5

#include<iostream>
using namespace std;

int main() 
{
    unsigned short a;
    short int b=-1;
    a=b;
    cout<<"a="<<a<<endl;
    return 0;
}

原文地址:https://www.cnblogs.com/aipopo/p/7514391.html