In reply to First post
Re: Write a program to find the square of the number taken from user
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Siam Ahmed -
import math
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Md. Ataur Rahman -
import math
num = float(input("Enter the number: "))
square = math.pow(num, 2)
print("Square of {0} is {1} ".format (num, square))
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
numb_1 = int (input ("Enter a Number"))
numb_2 = int(numb_1 * numb_1)
print(numb_2)
numb_2 = int(numb_1 * numb_1)
print(numb_2)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Nazmus Salehin -
user_input = float (input ("Enter a Number: "))
result = float(user_input * user_input)
print("The square of ",user_input, " is ", result)
result = float(user_input * user_input)
print("The square of ",user_input, " is ", result)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Siam Ahamed -
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
i = int (input ("Enter a Number:"))
j = int(i * i)
print(j)
j = int(i * i)
print(j)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Mohammad Dipo Sultan -
a=int(input("Enter a intger number: "))
x=a*a
print("Square of the number is:",x)
x=a*a
print("Square of the number is:",x)
In reply to First post
Re: Write a program to find the square of the number taken from user
numberInput = int(input("Enter a Number: "))
squareNumber = int(numberInput * numberInput)
print(squareNumber)
squareNumber = int(numberInput * numberInput)
print(squareNumber)
In reply to First post
Re: Write a program to find the square of the number taken from user
def squer(n):
n=number*number
print(n)
number=int(input())
squer(number)
n=number*number
print(n)
number=int(input())
squer(number)
In reply to First post
Re: Write a program to find the square of the number taken from user
s = int (input ("Enter the Number: "))
a = int(s * s)
print(a)
a = int(s * s)
print(a)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Ruhani Akter -
num = int(input("Enter a number:"))
ans = num*num
print("square of the number taken from user is:",ans)
ans = num*num
print("square of the number taken from user is:",ans)
In reply to First post
Re: Write a program to find the square of the number taken from user
R = int (input ("Enter the Number: "))
K = int(R * R)
print(K)
K = int(R * R)
print(K)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Momotaz Zahan Mim -
import math
num = float(input("Enter the number: "))
square = math.pow(num, 2)
print("Square of {0} is {1} ".format (num, square))
num = float(input("Enter the number: "))
square = math.pow(num, 2)
print("Square of {0} is {1} ".format (num, square))
In reply to First post
Re: Write a program to find the square of the number taken from user
by Md.Tawhidul Islam -
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number"))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Sanjina Nowshin Moon -
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
number = int (input (" Number: "))
x = int(number * number)
print("Squrt = ",x)
x = int(number * number)
print("Squrt = ",x)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
print(x**2)
print(x**2)
In reply to First post
Re: Write a program to find the square of the number taken from user
a = int (input ("Enter a Number: "))
print(a**2)
print(a**2)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Afroja Rahman -
a=int(input("Enter a number: "))
b=a*a
print("Square of the number is:",b)
b=a*a
print("Square of the number is:",b)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Afroja Rahman -
a=int(input("Enter a number: "))
b=a*a
print("Square of the number is:",b)
b=a*a
print("Square of the number is:",b)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Jannatul Islam -
a = int (input ("Enter a Number "))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
n = int (input ("Enter a Number: "))
print(n**2)
print(n**2)
In reply to First post
Re: Write a program to find the square of the number taken from user
x=int(input("Enter a integer number: "))
a=x**2
print("Square of the number is:",a)
a=x**2
print("Square of the number is:",a)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Md Sazzat Hossain -
A = int (input ("Enter a Number: "))
print(A**A)
print(A**A)
In reply to First post
Re: Write a program to find the square of the number taken from user
numberInput = int(input("Enter a Number: "))
squareNumber = int(numberInput * numberInput)
print(squareNumber)
squareNumber = int(numberInput * numberInput)
print(squareNumber)
In reply to First post
Re: Write a program to find the square of the number taken from user
by tamim rahman -
number = int (input (" Number: "))
a = int(number * number)
print("Squrt = ",a)
a = int(number * number)
print("Squrt = ",a)
In reply to First post
Re: Write a program to find the square of the number taken from user
numberInput = int(input("Enter a Number: "))
squareNumber = int(numberInput * numberInput)
print(squareNumber)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Sujon Islam -
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
numberInput = int(input("Enter a Number: "))
squareNumber = int(numberInput * numberInput)
print(squareNumber)
squareNumber = int(numberInput * numberInput)
print(squareNumber)
In reply to First post
Re: Write a program to find the square of the number taken from user
import math
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number"))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
x=int(input('Enter a number = '))
print('Square of this Number = ',x**2)
print('Square of this Number = ',x**2)
In reply to First post
Re: Write a program to find the square of the number taken from user
n = int (input ("Enter a Number to find the square of the number: "))
print(n**2)
print(n**2)
In reply to First post
Re: Write a program to find the square of the number taken from user
numb_1 = int (input ("Enter a Number"))
numb_2 = int(numb_1 * numb_1)
print(numb_2)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Abu Salkin -
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
a = int (input ("Enter a Number: "))
x= a**a
print(x)
x= a**a
print(x)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Shamiul Karim Sompod -
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
Number = int (input ("Enter a Number: "))
a = int(Number * Number)
print(a)
a = int(Number * Number)
print(a)
In reply to First post
Re: Write a program to find the square of the number taken from user
numberInput = int(input("Enter a Number: "))
squareNumber = int(numberInput * numberInput)
print(squareNumber)
squareNumber = int(numberInput * numberInput)
print(squareNumber)
In reply to First post
Re: Write a program to find the square of the number taken from user
import math
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
In reply to First post
Re: Write a program to find the square of the number taken from user
numberInput = int(input("Enter a Number: "))
squareNumber = int(numberInput * numberInput)
print(squareNumber)
squareNumber = int(numberInput * numberInput)
print(squareNumber)
In reply to First post
Re: Write a program to find the square of the number taken from user
#include int main()
{
printf("Please Enter any integer Value : ");
scanf("%f", &number);
square = number * number;
printf("square of a given number %.2f is = %.2f", number, square);
return 0;
{
printf("Please Enter any integer Value : ");
scanf("%f", &number);
square = number * number;
printf("square of a given number %.2f is = %.2f", number, square);
return 0;
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y
y = int(x * x)
print(y
In reply to First post
Re: Write a program to find the square of the number taken from user
by Sazzad Hossain -
i = int (input ("Enter a Number:"))
j = int(i * i)
print(j)
j = int(i * i)
print(j)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Alif Pranto -
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
import math
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Abu Salkin -
R = int (input ("Enter the Number: "))
K = int(R * R)
print(K)
K = int(R * R)
print(K)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
Name:MD Muhiminul Islam Mahim
ID:192-15-2850
Section:PC-A
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
ID:192-15-2850
Section:PC-A
x = int (input ("Enter a Number: "))
y = int(x * x)
print(y)
In reply to First post
Re: Write a program to find the square of the number taken from user
numberInput = int(input("Enter a Number: "))
squareNumber = int(numberInput * numberInput)
print(squareNumber)
squareNumber = int(numberInput * numberInput)
print(squareNumber)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
print(x**2)
print(x**2)
In reply to First post
Re: Write a program to find the square of the number taken from user
x = int (input ("Enter a Number: "))
print(x**2)
print(x**2)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Rashedul Alam Zilani -
x = int (input ("Enter a Number: "))
print(x**2)
print(x**2)
In reply to First post
Re: Write a program to find the square of the number taken from user
by NAZMUL HASSAN sanim -
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Shahid Shahriar -
a = int (input ("Enter a Number"))
b = int(a * a)
print(b)
b = int(a * a)
print(b)
In reply to First post
Re: Write a program to find the square of the number taken from user
s = int (input ("Enter the Number: "))
a = int(s * s)
print(a)
a = int(s * s)
print(a)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Sumon Bala -
import math
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
num = float(input("Enter the number: "))
squareValue = math.pow(num, 2)
print(squareValue)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Meherol Hasan -
import math
num = float(input("Enter a number: "))
squareValue = math.pow(num, 2)
print(squareValue)
num = float(input("Enter a number: "))
squareValue = math.pow(num, 2)
print(squareValue)
In reply to First post
Re: Write a program to find the square of the number taken from user
by Akramul Ratul -
number = float(input(" Please Enter any numeric Value : "))
square = number * number
print("The Square of a Given Number {0} = {1}".format(number, square))
square = number * number
print("The Square of a Given Number {0} = {1}".format(number, square))