1,5
Объяснение:
#include <iostream>
#include<cmath>
using namespace std;
int main() {
setlocale(LC_ALL, "RUS");
int a = 5 / 3;
float b = 1.5;
b += --a / 2;
cout << b << endl;
}
1,5
Объяснение:
#include <iostream>
#include<cmath>
using namespace std;
int main() {
setlocale(LC_ALL, "RUS");
int a = 5 / 3;
float b = 1.5;
b += --a / 2;
cout << b << endl;
}