Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 538 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 538 Bytes

Task

Extend the program to make the computer type as follows.

15 X 1 = 15
15 X 2 = 30
15 X 3 = 45
15 X 4 = 60
15 X 5 = 75

To get the first line in the output, we can use commands in the following manner.

sentence_rayu("15 X 1 = ");
number_rayu(15*1);
enter_kottu();

Write the remaining code in similar fashion.

Submit your code

Once you got the expected output. Submit your code.
When you submit it will prompt you to view test cases.

Click Run tests button.
Once tests pass click on Submit.