my for loop stop after the first valid number has been found how do i fix this
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Elisa
am 22 Aug. 2024
Kommentiert: Elisa
am 22 Aug. 2024
I am new to Matlab, just learned the for loop, basically the loop run properly, but stop after the first valid number has found.
numbers=importdata('numbers.txt');
result_1=[];
for i =1:numel(numbers);
num=numbers(i);
if mod(num, 10) == 6 && mod(num, 4) == 0
answer_1=[result_1,num];
end
end
fprintf('The numbers that ends in 6 and are divisible by 4: \n');
fprintf('%d\n',answer_1)
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 22 Aug. 2024
Use "result_1", no need to create "answer_1"
numbers=1:100;
result_1=[];
for i =1:numel(numbers);
num=numbers(i);
if mod(num, 10) == 6 && mod(num, 4) == 0
result_1=[result_1,num];
end
end
fprintf('The numbers that ends in 6 and are divisible by 4: \n');
fprintf('%d\n',result_1)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!