Ответ:
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)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
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)