Respuesta :
Mark Brainliest please
Answer:
# The user is prompted to enter number as dividend
# The received number is assigned to userNum
userNum = int(input("Enter the number you want to divide: "))
# The user is prompted to enter number as divisor
# The divisor is assigned to x
x = int(input("Enter the number of times to divide: "))
# divideNumber function is defined to do the division
def divideNumber(userNum, x):
# counter is declared to control the loop
counter = 1
# the while-loop loop 3 times
# the division is done 3 times
while counter <= 3:
# integer division is done
# truncating the remainder part
userNum = userNum // x
# the result of the division is printed
print(userNum, end=" ")
# the counter is incremented
counter += 1
# the divideNumber function is called
# the received input is passed as parameter
# to the function
divideNumber(userNum, x)
# empty line is printed
print("\n")
Explanation:
The // operator in python works like the / operator in C. The // operator returns only the integer part of division operation. For instance 6 // 4 = 1. The fraction part is discarded
Answer:
# The user is prompted to enter number as dividend
# The received number is assigned to userNum
userNum = int(input("Enter the number you want to divide: "))
# The user is prompted to enter number as divisor
# The divisor is assigned to x
x = int(input("Enter the number of times to divide: "))
# divideNumber function is defined to do the division
def divideNumber(userNum, x):
# counter is declared to control the loop
counter = 1
# the while-loop loop 3 times
# the division is done 3 times
while counter <= 3:
# integer division is done
# truncating the remainder part
userNum = userNum // x
# the result of the division is printed
print(userNum, end=" ")
# the counter is incremented
counter += 1
# the divideNumber function is called
# the received input is passed as parameter
# to the function
divideNumber(userNum, x)
# empty line is printed
print("\n")
Explanation:
The // operator in python works like the / operator in C. The // operator returns only the integer part of division operation. For instance 6 // 4 = 1. The fraction part is discarded
In the given code you include two languages, that's why it will give the error messages, and for better understanding, we give the program into two languages:
Following are the Java and Python Program to these questions:
Java Program:
import java.util.*;//import package
public class LabProgram //defining a class LabProgram
{
public static void main(String[] ar)//defining main method
{
int userNum,divNum;//defining integer variable
Scanner on=new Scanner(System.in);//defining Scanner class Object for user-input
userNum=on.nextInt();//input value
divNum=on.nextInt();//input value
for(int i=0;i<3;i++)//defining loop to divide value 3 times
{
userNum=userNum/divNum;//dividing userNum by divNum and store its value into userNum
System.out.println(userNum);//print userNum value
}
}
}
Python Program:
userNum= int(input())#input integer value
divNum= int(input())#input integer value
# calculating the division three times
userNum=userNum//divNum#using userNum that divides userNum by divNum and store its value
print(userNum)#print userNum value
userNum=userNum//divNum#using userNum that divides userNum by divNum and store its value
print(userNum)#print userNum value
userNum=userNum//divNum#using userNum that divides userNum by divNum and store its value
print(userNum)#print userNum value
Output:
Please find the attached file.
Learn more:
brainly.com/question/21661364
