write a programme to capture 3 numbers and determine the smallest and the largest.
0773247886 0 Newbie Poster
Recommended Answers
Jump to PostDo you mean something like this:
#include <iostream> using namespace std; int min (const int a, const int b); int max (const int a, const int b); int main() { int a, b, c; cout << "Enter three numbers: " << endl; cin >> a >> b …
Jump to Post@Gonbe - Do you think it would be better for someone trying to learn to get an informed nudge or suggestion rather than a working solution? Often times a full solution only serves to further bury a person struggling with the basics.
All 8 Replies
Gonbe 32 Newbie Poster
L7Sqr 227 Practically a Master Poster
Gonbe 32 Newbie Poster
NathanOliver 429 Veteran Poster Featured Poster
Gonbe 32 Newbie Poster
deceptikon 1,790 Code Sniper Team Colleague Featured Poster
NathanOliver 429 Veteran Poster Featured Poster
vijayan121 1,152 Posting Virtuoso
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.