block.cpp
来自「c++的一些源代码」· C++ 代码 · 共 16 行
CPP
16 行
#include <stdio.h>
int main ()
{
int x;
x = 2;
printf ("x prior to the block is %d\n", x);
{
int x;
x = 3;
printf ("x inside the block is %d\n", x);
}
printf ("x after the block is %d\n", x);
return (0);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?