How can I debug this?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Minhao Wang
el 25 de Sept. de 2020
Comentada: Dana
el 29 de Sept. de 2020
clc;clear
C1 = input('Please enter a code to break: ' , 's');
if length(C1) ~= 6
disp('Decoy message: Not a six-digit number.');
else
A = mod(sum(C1 - '0'),2);
if A == 1
disp('Decoy message: Sum is odd.')
else
C2 = (C1(1) - '0') * (C1(2) - '0') - (C1(3) - '0');
failed = false;
switch C2
case 1
Day = 'Rescue on Monday';
case 2
Day = 'Rescue on Tuesday';
case 3
Day = 'Rescue on Wednesday';
case 4
Day = 'Rescue on Thursday';
case 5
Day = 'Rescue on Friday';
case 6
Day = 'Rescue on Saturday';
case 7
Day = 'Rescue on Sunday';
otherwise
disp('Decoy message: Invalid rescue day.');
failed = true;
end
F1 = str2double(C1(4));
F2 = str2double(C1(5));
F3 = str2double(C1(6));
if mod(F1,3) == 0
B = F2 - F3;
else
B = F3 - F2;
end
if ~failed
switch(B)
case 1
Position = ' at the bridge.';
case 2
Position = ' at the library.';
case 3
Position = ' at the river crossing.';
case 4
Position = ' at the airport.';
case 5
Position = ' at the bus terminal.';
case 6
Position = ' at the hospital.';
case 7
Position = ' at St. Petes Church.';
otherwise
disp('Decoy message: Invalid rendezvous point.');
end
disp([Day , Position])
end
end
end
If I enter 918990, I do get what I want, it will show Decoy message: Invalid rendezvous point. But there will appear an error message, how I can debug this?
0 comentarios
Respuesta aceptada
Dana
el 25 de Sept. de 2020
Editada: Dana
el 25 de Sept. de 2020
The error is because if you end up in the "otherwise" case of your switch(B), the variable Position doesn't ever get defined, so when you try to do disp([Day , Position]) it causes an error. To avoid this, you can just put a return statement:
.
.
.
otherwise
disp('Decoy message: Invalid rendezvous point.');
return
end
disp([Day , Position])
end
end
end
6 comentarios
Dana
el 29 de Sept. de 2020
You already did it once with your failed variable: you set it equal to false initially, and then if you ended up in your "otherwise" case you switched it to true, and then you only proceeded to the switch(B) statement if failed=false. It's exactly the same logic in this case.
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!