Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- //////////////////////////////////////////////////////////////
- int main()
- {
- int a, b, c, nMin;
- cin >> a >> b >> c;
- if(a < b) nMin = a;
- else nMin = b;
- if(c < nMin) nMin = c;
- cout <<nMin;
- return 0;
- }
- /*
- // Это оформление лучше
- #include <iostream>
- using namespace std;
- //////////////////////////////////////////////////////////////
- int main()
- {
- int a, b, c;
- cin >> a >> b >> c;
- if((a < b) && (a < c)) { cout << a; }
- else
- {
- if((b < a) && (b < c))
- {
- cout << b;
- }
- else
- {
- if((c < a) && (c < b))
- {
- cout << c;
- }
- }
- }
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement