📄 1iv.cpp
字号:
#include <iostream.h>
void main()
{ float height, length, width, area, volume;
cout << "enter height, length, width: ";
cin >> height >> length >> width;
cout << height << length << width;
area = height + length;
cout << area;
volume = area * width;
cout << "volume is " << volume;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -