Scar S Scar Регистрация 16 Окт 2013 Сообщения 64 Репутация 0 Спасибо 0 Монет 0 26 Июл 2022 #1 int main() { int a,b,c; cout<<"Введите a "<<endl; cin>>a; cout<<"Введите b "<<endl; cin>>b; cout<<"Введите c "<<endl; cin>>c; if (a>=b && a>=c ) { cout<<"Максимум= "<<a; } else if ( b>=a && b>=c ) { cout<<"Максимум= "<<b; } else (c>=b && c>=a ) { cout<<"Максимум= "<<c; } } Компилятор ругается на эту строчку: else (c>=b && c>=a )
int main() { int a,b,c; cout<<"Введите a "<<endl; cin>>a; cout<<"Введите b "<<endl; cin>>b; cout<<"Введите c "<<endl; cin>>c; if (a>=b && a>=c ) { cout<<"Максимум= "<<a; } else if ( b>=a && b>=c ) { cout<<"Максимум= "<<b; } else (c>=b && c>=a ) { cout<<"Максимум= "<<c; } } Компилятор ругается на эту строчку: else (c>=b && c>=a )
Андрей___1 А Андрей___1 Регистрация 19 Июл 2013 Сообщения 90 Репутация 0 Спасибо 0 Монет 0 26 Июл 2022 #2 #include <iostream> #include <cmath> using namespace std; int main(){float a,b,c; cout<<"a b c: "; cin>>a>>b>>c; cout<<"max="<<fmax(a,fmax(b,c))<<endl;} Позитивный голос 0
#include <iostream> #include <cmath> using namespace std; int main(){float a,b,c; cout<<"a b c: "; cin>>a>>b>>c; cout<<"max="<<fmax(a,fmax(b,c))<<endl;}
monstrik M monstrik Регистрация 10 Дек 2013 Сообщения 79 Репутация 0 Спасибо 0 Монет 0 26 Июл 2022 #3 потому что else if Позитивный голос 0
midav12313 M midav12313 Регистрация 16 Май 2013 Сообщения 66 Репутация 0 Спасибо 0 Монет 0 26 Июл 2022 #4 #include #include using namespace std; int int_parse(const char* msg) { cout > value; cin.ignore(numeric_limits::max(), '\n'); return value; } void write_line(const char* msg, const int value) { cout Позитивный голос 0
#include #include using namespace std; int int_parse(const char* msg) { cout > value; cin.ignore(numeric_limits::max(), '\n'); return value; } void write_line(const char* msg, const int value) { cout
MarshallMathersqq M MarshallMathersqq Регистрация 15 Мар 2013 Сообщения 68 Репутация 0 Спасибо 0 Монет 0 26 Июл 2022 #5 if (a < b) a = b; if (a < c) a = c; cout << "Максимум= " << a; Позитивный голос 0