📄 f0203.cpp
字号:
//=====================================
// f0203.cpp
// 拆成两个函数
//=====================================
#include<iostream>
using namespace std;
//-------------------------------------
void sphere();
//-------------------------------------
int main(){
sphere();
}//------------------------------------
void sphere(){
double radius;
cout<<"Please input radius: ";
cin >>radius;
if(radius < 0) return;
cout<<"The result is "<<radius*radius*3.14*4<<"\n";
}//====================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -