cpp 代码
- ! --- main() ---
- implicit none
- ! integer 到底是 2 or 4 個 bytes?
- ! Ans: > 32767, 所以是 4 個 bytes
- integer no
- no= 10
- do while (no .GT. 0)
- no= no + no + no
- print *, 'no= ', no
- end do
- print *, ' '
- print *, 'no= ', no
- end
- ! -----------------------------------------------
本文通过一个简单的C++程序演示了整型变量的使用,包括整型变量的大小及基本运算。通过程序运行结果解释了integer类型的变量在当前环境下占用4个字节。
2907

被折叠的 条评论
为什么被折叠?



