asked 127k views
0 votes
Write an algorithm to solve a simultaneous equation with three unknowns

asked
User Rodurico
by
7.5k points

1 Answer

2 votes
It's can be done with For-Loop.
for(a=0;a<x;a++){
for(b=0;b<x;b++){
for(c=0;c<x;c++){
//This will include every combination and solve the problem.

}
}
}
answered
User Arutaku
by
7.5k points

Related questions

1 answer
2 votes
106k views