CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
using namespace std;
int main()
{
int a , b , c , d , question_a , question_b;
a = 1 , b = 12 , c = 13 , d = 14 ;
question_a = c*b/( - d * 65 % 8 )*a;
question_b = d*a/( - c * 45 % 18)*b;
cout << "The solution of question_a is =" << question_a << endl <<"The solution of question_b is =" << question_b << endl ;
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run