Aim:
Get two numbers a
and b
from the user. Use
the if/then/else
statement to set the variable
result
to the maximum of the numbers a
and b
.
"\\Clear";
Your code starts after this line
a = getNumber("Enter the first number: ", 8);
b = getNumber("Enter the second number: ", 3);
if (a>=b) {
result = a;
} else {
result = b;
}
Your code ends before this line
print("max("+a+", "+b+")=" + result);
> max(89, 34)=89
The code below is for automatically checking the result. Please ignore it!
parts = split(getInfo("log"),"=");
logText = parts[1];
ok = (indexOf(logText, toString(maxOf(a,b)))!=-1);
if (ok)
showMessage("That's right. Great, you did it!");
else
showMessage("Your result is wrong! Please check your macro and try again!");