expectedoutputboxpassing.txt

来自「国外的数据结构与算法分析用书」· 文本 代码 · 共 30 行

TXT
30
字号
Inside main method
Variable x = 5
Variable myBox = 
   Length = 2
   Width  = 3
   Height = 4

Now inside makeChanges method - Doing Changes
Variable x = 9
Variable changeBox = 
   Length = 10
   Width  = 20
   Height = 30

Now leaving makeChanges method

Now back in the main method
Variable x = 5
Variable myBox = 
   Length = 10
   Width  = 20
   Height = 30

After using the newBox method
Variable myBox = 
   Length = 10
   Width  = 20
   Height = 30

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?