Final answer:
To write the program, you will need to use a loop that reads user inputs until the user enters 0. Prompt the user to enter the exchange rate and the US dollar values to be converted to yen.
Step-by-step explanation:
To write a program that converts US dollar values to Japanese yen, you will need to use a loop that continues reading user inputs until the user enters 0. First, ask the user to type today's price for one dollar in Japanese yen.
Then, within the loop, prompt the user to enter a US dollar value and convert it to yen using the exchange rate provided by the user. Finally, display the converted value and repeat the process until the user enters 0.
The question involves writing a program that converts U.S. dollars to Japanese yen based on today's exchange rate. The program will prompt the user for the current exchange rate and then repeatedly request U.S. dollar amounts to convert to yen, continuing until the user enters 0.
task requires understanding of currency exchange and basic programming logic such as loops and input/output operations.