friends406.cpp
来自「Data Abstraction & Problem Solving with 」· C++ 代码 · 共 16 行
CPP
16 行
#include "Sphere406.h"#include <iostream>using namespace std;void readSphereData(Sphere& s) { cout << "Enter sphere radius: "; cin >> s.theRadius;} // end readSphereData void writeSphereData(Sphere& s){ cout << "The radius of the sphere is " << s.theRadius << endl;} // end writeSphereData
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?