Опять не школьный вопрос но кто шарит , напишите в чём ошибка. пишет на 32 строке ошибка was not declared in this scope
#include
#include
using namespace std;
int main(int sys) {
cout < < "if you would midle write-1, if place of circle-2" < < endl;
cin < < sys;
if(sys == 1) {
float a, b, c, d, e, sum, mid, pi=3.14, g, r;
cout < < "input first midle" < < endl;
cin > > a;
cout < < "inpur second midle" < < endl;
cin > > b;
cout < < "input third midle" < < endl;
cin > > c;
cout < < "input thord midle" < < endl;
cin > > d;
cout < < "input fived midle" < < endl;
cin > > e;
sum = a + b + c + d + e;
mid = sum / 5;
cout < < "your midle: ";
cout < < mid;
}
else{
if(sys == 2) {
cout < < "this is the circle area formula s=pi*r^2" < < endl;
cout < < "input radius(r)" < < endl;
cin > > r;
cout < < pi * r * r;
}
}
return 0;
}
Во-первых в начале НЕ сin << sys, а сin >> s;
Во-вторых ты объявил/а все переменные в первом ифе, а значит в других функциях они уже не видны, поэтому стоит их объявить глобально
В-третьих переменная g не используется, поэтому можно ее и не объявлять
Вот код:
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int sys;
float a, b, c, d, e, sum, mid, pi=3.14, r;
cout << "if you would midle write-1, if place of circle-2" << endl;
cin >> sys;
if(sys == 1) {
cout << "input first midle" << endl;
cin >> a;
cout << "inpur second midle" << endl;
cin >> b;
cout << "input third midle" << endl;
cin >> c;
cout << "input thord midle" << endl;
cin >> d;
cout << "input fived midle" << endl;
cin >> e;
sum = a + b + c + d + e;
mid = sum / 5;
cout << "your midle: ";
cout << mid;
}
else{
if(sys == 2) {
cout << "this is the circle area formula S=pi*r^2" << endl;
cout << "input radius(r)" << endl;
cin >> r;
cout << pi * r * r;
}
}
return 0;
}