Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 580 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 580 Bytes

Task

Extend the program to make the computer type as follows.

5 % 3 = 2
4 % 3 = 1
3 % 3 = 0
2 % 3 = 2
1 % 3 = 1

5 / 3 = 1
4 / 3 = 1
3 / 3 = 1
2 / 3 = 0
1 / 3 = 0

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

sentence_rayu("5 % 3 = ");
number_rayu(5 % 3);
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.