Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
~167 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for kevin0101

[CODE]#include <iostream> #include <iomanip> //for formatted output #include <string> //for strings using namespace std; //named constants const double CENTIMETERS_PER_INCH = 2.54; const int INCHES_PER_YARD = 36; const int INCHES_PER_FOOT = 12; //function prototypes double toCentimeters(int, int, int); void fromCentimeters(double, int&, int&, int&); char inputData(int, string&, double&, int&, int&, int&); void …

Member Avatar for Fbody
-1
167