text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

friends412.cpp

Go to the documentation of this file.
00001 
00019 void readSphereData(Sphere& s)
00020 {
00021    cout << "Enter sphere radius: ";
00022    cin >> s.theRadius;
00023 }  // end readSphereData
00024 
00025 void writeSphereData(Sphere& s)
00026 {
00027    cout << "The radius of the sphere is "
00028         << s.theRadius << endl;
00029 }  // end writeSphereData

Generated on Sun Aug 27 19:59:37 2006 for AWLogo by  doxygen 1.4.6