+ 2
[Solved] (C++) | How i can find from three numbers a biggest number?
sorryfornotbeautifulenglishiamfromukraine
2 Answers
+ 3
#include <algorithm>
std::max(a, max(b, c));
or
std::max({a, b, c});
http://www.cplusplus.com/reference/algorithm/max/
http://en.cppreference.com/w/cpp/algorithm/max
https://codereview.stackexchange.com/questions/26100/maximum-of-three-values-in-c
+ 3
while(true){
cout<<"Thank you"<<endl;
}