?? 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;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -