PatrickFrankAIU / ITWEB220-2404A

Learning resources for students in ITWEB 220, term 2404A.
0 stars 0 forks source link

Exercise: Modulus Calculator #5

Open PatrickFrankAIU opened 2 months ago

PatrickFrankAIU commented 2 months ago

Write a program that accepts two inputs from the user (storing them in separate variables), and then calculates the remainder of division from the first input value by the second input value. (In other words, divide the first number by the second number, and then show the remainder to the user.)

Tip: In JavaScript (and most other languages), the modulus operator is the percentage symbol: "%"