正解:D
The output of the Breakfast program if it ran on Sunday would be pancakes. The program uses an if-else-if-else statement to choose among different breakfast options based on the day of the week input. The program first checks if the day input is equal to "Saturday". If this condition is true, it prints "Waffles" and ends. If this condition is false, it checks if the day input is equal to "Sunday". If this condition is true, it prints
"Pancakes" and ends. If this condition is false, it prints "Oatmeal" and ends. Since the day input is "Sunday", the second condition is true, and the program prints "Pancakes".