How to code a possibility integer numbers A, B for equation A+B=10
Mostrar comentarios más antiguos
Hello,
I'm little ask my self this question,
Is't possible to program of showing possibility integer numbers ( 1,2,3 ..etc) of A, B for equation A+B=10
-- We need to make it easier to code by conditioning numbers to use from 0 to 10
A+B=10
I want from program to show only values for A, B
It could be A=9, B=1
or A=6, B=4
or A=0, B=10
1 comentario
madhan ravi
el 13 de Mzo. de 2019
Is it your homework? what have you tried so far?
Respuestas (1)
Raj
el 13 de Mzo. de 2019
0 votos
Try this:
for A=0:10
for B=0:10
if A+B == 10
disp('Combination of A and B satisfying the condition is:')
A
B
end
end
end
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!