📄 5iv.cpp
字号:
// calcroot.cpp A program to calculate the square root of
// an input value;
#include <iostream.h>
#include <math.h>
void main()
{ float value;
cout << "Enter a value: "; cin >> value;
cout << "Square root is: " << sqrt(value) << endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -