Question
Write a program that input two numbers and find if second number is square of firs number
Answers
read x,y
if y == x*x then {
yes
} else {
no
}
if y == x*x then {
yes
} else {
no
}
Related Questions
Write a function for the input-output table.
Input x- 0, 1, 2, 3
Output 7- 3, 4, 5, 6
Write a program that will input an item’s wholesale cost and its markup percentage.
The program w...
Write a declarations and input statements necessary to read each of the following sets of data value...
Write a pseudocode to input 10 temperatures per day for 20 days and output the average per day and a...
write a program C++ program and Use a recursive function that finds the n-th term using the followin...
a program to input the prices of two items as well as the quantities purchased, and compute the amou...
Write a java program to input an integer numbers and find the highest number among them (using array...
Write a java program to input the ages of '10'students and count the number of students who has the...
make a program that will input 6 numbers and output the highest number and the lowest number
I need a program to input age of 10 persons and output the oldest and youngest age.