本帖最后由 龙瑞麟 于 2015-5-11 01:28 编辑
请大家帮忙分析一下这到题,主要是最后面的那一个260是怎么来得- #include <stdio.h>
- int main()
- {
- int a = 20;
- int score = a + 100;
- printf("%d\n", score);//--->120
- {
- int score = 50;
- {
- score = 10;
- printf("%d\n", score);//---->10
- }
- a = 10;
- }
- {
- score = a + 250;
- int score = 30;
- printf("%d\n", score);//---->30
- }
- printf("%d\n", score);
- return 0;
- }
复制代码
|
|