Write a program to input a side of a square. Calculate and print the area of a square.
(spams will be reported)
Answers
Answered by
12
Answer:
C Program
- #include <stdio.h>
- int main()
- {
- int s=13;
- int area_square=s*s;
- printf("Area of the square=%d",area_square);
- }
Answered by
1
Answer:
#python ka ha
# Python program to calculate square of a number
# Method 1 (using number*number)
# input a number
number = int (raw_input ("Enter an integer number: "))
# calculate square
square = number*number
print "Square of {0} is {1} ".format (number, square)
#end
not spam try it
Similar questions