C-17-Q070mediumsingle_mcq
The program to find the largest of three integers uses:
The program to find the largest of three integers uses:
- aA
forloop - bA nested
match - cAn
if / elif / elsechain - dA
whileloop
ব্যাখ্যা
The largest-of-three program compares the values using an if / elif / else chain, with one branch per candidate number. No loop or match statement is needed for a fixed set of three comparisons.