Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~336 People Reached
Favorite Forums
Favorite Tags
c++ x 5
Member Avatar for rtdunlap

[code] #include <iostream> #include <conio.h> //needed to allow getch() #include <iomanip> using namespace std; int mean(const int [ ], int );//function prototype int main() // initializing the main program { char ch1; cout<<"Please enter the letter M for the mean function or the letter F for the Frequency function"<<endl; cin>>ch1; …

Member Avatar for Tellalca
0
110
Member Avatar for rtdunlap

I need to write a C++ code that will ask the user to enter either 1 or 2. If 1 is entered the program must count all even numbers from 0 to 100. (I got that part done) If 2 is entered you are suppose to prompt the user to …

Member Avatar for stereomatching
0
104
Member Avatar for rtdunlap

[CODE] #include <iostream> using namespace std; int main() { char a = 0, b = 1, ch1, ch2, ch3, ch4, chsum; float num1, num2, num3, sum, avg; cout<<"Enter Character 'a' or 'b': "; //asking user to enter character a or b cin>>ch1; if (ch1 == a) { cout<<"Enter three floating-point …

Member Avatar for LordNemrod
0
122