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
~1K People Reached
About Me

student

Interests
RC, drifting etc.
Favorite Tags

4 Posted Topics

Member Avatar for tuannie

[CODE]#include <iostream> using namespace std; int main() { const int MAXNUMS = 5; int count; int num, total; cout << "\nThis program will ask you to enter " << MAXNUMS << " numbers.\n"; count = 1; total = 0; while (count <= MAXNUMS) { cout << "Please input integer " …

Member Avatar for khanh1975
0
296
Member Avatar for viet_mafia

Hi everyone, I'm pretty new to Javascript and I guess I'm pretty nooby at it so I have a problem with some Javascript I'm trying to write. Basically I'm creating some Javascript that will allow me to calculate someone's Body Mass Index (BMI) and so far with my code have …

Member Avatar for rgtaylor
0
332
Member Avatar for newgurl

#include <iostream> #include <string.h> using namespace std; int main () { int ref,x,y,z; char word1[50] = "word1 string"; char word2[50] = "word2 string"; char word3[50] = "word3 string"; string wordsml; string wordmed; string wordlge; cout<<"This program will ask you to enter 3 words. \n" "It will then diplay them in …

Member Avatar for WolfPack
0
307
Member Avatar for viet_mafia

Hi guy, I need to create a program that sorts 3 words entered into order from shortest to longest. So far I have the following done but when I run it, it only displays the first two words in order of length and doesnt show the 3rd word. Can anyone …

Member Avatar for Lerner
0
286

The End.