Этот коммит содержится в:
2024-05-27 12:30:54 +03:00
родитель 5d699f4d7b
Коммит ea7bcf8224

Просмотреть файл

@@ -7,7 +7,7 @@ using namespace std;
int main() int main()
{ {
cout << "Enter A and B: "; cout << "Enter A and B: ";
int a, b; double a, b;
cin >> a >> b; cin >> a >> b;
vector<float> numbers = {a-b, a*b, a/b}; vector<float> numbers = {a-b, a*b, a/b};
int maxx = numbers[0]; int maxx = numbers[0];