9.22作业4

#include<iostream>
using namespace std;
int main(){
    short int a=2;
    a-=1;
    cout<<a<<endl;
    return 0;
}

原文地址:https://www.cnblogs.com/sanyeai/p/7587285.html