摘要: /* 语句块 用花括号括起来的语句 */#include <iostream>int main(){ using namespace std; int x = 20; { int y = 100; cout << x << endl; //ok cout << y << endl; //ok } / 阅读全文
posted @ 2019-03-02 20:42 兵临城下的匹夫 阅读(734) 评论(0) 推荐(0)
TOP