No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
student
- Interests
- RC, drifting etc.
4 Posted Topics
Re: [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 " … | |
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 … | |
Re: #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 … | |
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 … |
The End.