C++: -3
Python: -3.0
Объяснение:
C++
#include <iostream>
using namespace std;
void main()
{
setlocale(LC_ALL, "ru");
double c;
c = 3 + 2 * 10 % 3 - 8 / 2 * 2;
cout << c << endl;
system("pause");
}
Python
c=3 + 2 * 10 % 3 - 8 / 2 * 2
print("c = ", c)
C++: -3
Python: -3.0
Объяснение:
C++
#include <iostream>
using namespace std;
void main()
{
setlocale(LC_ALL, "ru");
double c;
c = 3 + 2 * 10 % 3 - 8 / 2 * 2;
cout << c << endl;
system("pause");
}
Python
c=3 + 2 * 10 % 3 - 8 / 2 * 2
print("c = ", c)