Sorting 3 Numbers and Even/Odd Questions

He will need to use the cin object and the >> operator to get the input, and he will need to use the cout object and the << operator to output the result. Also, he will need to declare three variables to store the input, and he will need to use a conditional statement (if/else) to compare the variables and output them in the correct order.In summary, the conversation is about a request for help in writing a program that takes three numbers as input and outputs them in ascending order using C++. The use of the cmath header and the modulo operator to determine even and odd numbers is also discussed. The conversation concludes with a solution provided by a forum member.
  • #1
4
0
hello everyone
i want your expert and your help please
i have to write a program that takes three numbers as input and write them in ascending order.
Sample Program Run:
Enter three numbers: 4 8 3
Numbers in ascending order: 3 4 8
how can i do it ?!:cry:
and i want to ask you does the cmath knows the diffrence between even numbers and odd numbers ?!

please consider that am a very first level in c++ and i need your help :blushing::cry:


thanks all
 
Physics news on Phys.org
  • #2


new c++er said:
hello everyone
i want your expert and your help please
i have to write a program that takes three numbers as input and write them in ascending order.
Sample Program Run:
Enter three numbers: 4 8 3
Numbers in ascending order: 3 4 8
how can i do it ?!:cry:
and i want to ask you does the cmath knows the diffrence between even numbers and odd numbers ?!

please consider that am a very first level in c++ and i need your help :blushing::cry:


thanks all
That's concerns...

What have you tried to do? The rules of the forum say that you need to make an attempt at a solution before anyone can help you. See Homework Help here: https://www.physicsforums.com/showthread.php?t=5374.

What's "the cmath?" How would it help to know whether the numbers are even or odd? That's not anything that's relevant in this problem.
 
Last edited:
  • #3
i'll check the link now :) !
but abt the cmath its another question not realted to the first one :D!
 
  • #4
i haven't tried anything for honosty!
 
  • #5
cmath is the header math.h. You don't need any of the functions whose prototypes are in math.h if all you want to do is determine whether a number is even or odd. The modulo or remainder operator (%) is all you need. You don't need to include any headers to use it.

This operator takes two operands, and returns the remainder when the first operand is divided by the second.
For example 5 % 2 == 1, and 8 % 2 == 0.
 
  • #6
wt abt the acending thingy?!
 
  • #7
Take a stab at it and then show me what you've tried.
 
  • #8
#!perl
print "Enter three numbers: ";
print "Numbers in ascending order: ".join(" ",sort {$a <=> $b} (split /\D+/,<>))."\n";

DaveE
 
  • #9
davee123 said:
#!perl
print "Enter three numbers: ";
print "Numbers in ascending order: ".join(" ",sort {$a <=> $b} (split /\D+/,<>))."\n";

DaveE
That's not going to be much help to the OP since he will be writing C++ code.
 

Suggested for: Sorting 3 Numbers and Even/Odd Questions

Replies
3
Views
721
Replies
32
Views
3K
Replies
1
Views
667
Replies
9
Views
2K
Replies
4
Views
976
Replies
2
Views
656
Back
Top