Web-based application - this is a special kind of applications that operate in the global Internet via HTTP. The user interacts with the program, usually carried out through the browser.
The program is
num = int(input("Enter Numerator "))
den = int(input("Enter Denominator "))
print("quotient is ",str(num//den)," remainder is ", str(num%den))
<h3>
How to create a division sign in HTML?</h3>
To create a division sign ( ÷ ) in HTML you can use any of the following codes.
÷
÷
÷
<h3>
How to divide in computer programming?</h3>
Perl code
use strict;
my $first = 15;
my $second = 5;
my $answer = $first / $second;
print "You get $answer if you divide $first by $second";
When the script above is run, it displays "You get 3 if you divide 15 by 5" on the screen.
To learn more about programming, refer
https://brainly.ph/question/4743
#SPJ4
So here is the code in Python:
n = 0.00 #this is a float because there are some numbers that are decimals.
while n < 20: #n which is 0.00 and while it is lower than 20 if runs the code below
n = n + 1 #it will add 1 to n everything it runs the code.
k = n / 2 #it will divide whatever n is everytime by 2
print(str(n) + '/2: ') # it's printing the number it's on
print(k) # prints the answer for the n.
You can change n to add by any, make n any num instead of 0.00 and you can change the while condition from n < 20 to any other logical statement. If you want to get creative you can take 2 inputs for numbers and make one of them the starting number and other one is the ending number. Also make sure to make n a number lower than you starting point because if you set n as your starting point then it will skip it.