Filter löschen
Filter löschen

if else nested loops

1 Ansicht (letzte 30 Tage)
Arouj
Arouj am 8 Apr. 2019
Kommentiert: A. Sawas am 9 Apr. 2019
This is my program... i want the ouput of x and y to be the new values not the 0 and 0. this always returns me 0 and 0 why?
clc
clear
a=input('a')
b=input('b')
x=0;
y=0;
if a>b
x-1
y-1
else if a<b
x+1
x+2
else if a==b
y=1
x
end
end
end
x
y

Antworten (1)

A. Sawas
A. Sawas am 8 Apr. 2019
The problem is not with the if-else statments (although they are not correctly used). You need to assign the new values to x and y like this:
x - 1; % this does not change the values of x
x = x - 1; % the new value (x-1) is assigned to x
y = y - 1;
  7 Kommentare
Image Analyst
Image Analyst am 8 Apr. 2019
Bearbeitet: Image Analyst am 8 Apr. 2019
Sawas:
else if a<b
is much, much different than
elseif a<b
If you don't know why, just ask.
A. Sawas
A. Sawas am 9 Apr. 2019
Image Analyst: Thanks for the note ... I know that very well ;)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by