+ 2
3x+4y-8z
plz help how to solve ...x y z value u can set on desirr
6 Respuestas
+ 12
3x+4y-8z
it can't solve.
It have a diffrent variables.
+ 10
//this way 1st declare variables change their value to desired ones than add "*" symbol between the numbers & alphabets
#include <iostream>
using namespace std;
int main() {
int x = 1;//neccesary to declare variables 1st
int y = 1;//change their values to any integer
int z = 0;
cout << 3*x+4*y-8*z << endl;//print the results of the maths operation
return 0;
}
+ 3
You can solve an equation but not an expression. Would you mind to elaborate more about your problem?
0
write a program that will solve this equation and print the final result of equation....
0
thanks u all specially Lord krishna thanks.....
0
but now i want to do dry run on this program so tell me how to dry run