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
Ranked #72.9K
2 Posted Topics
I'm fairly new to programming myself but... If it only needs to sort three numbers this might be a better way to do it. #include <iostream> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; int temp; if (a > b) { …
The End.
ob3sus