Please visit http://talentsealed.blogspot.com/2009/10/to-find-sqaure-of-numbers-using-c.htmlfor the answer.
write a vb program to find the magic square
write an assembly language program to find sum of N numbers
program to find maximum of two numbers using pointers
VBnet program to find the prime numbers between 100 to 200?
First you will need to have some basic programming knowledge. You can use this to help make the program that is needed.
k
You can use the Math.sqrt() method.
i need this answer
#include<iostream> int main() { int i=0; while(i++<10) std::cout<<i*i<<std::endl; }
Since there is an infinite set of prime numbers the answer would be infinity.
int square (int N) return N*N;
To write a program in QBASIC to find the area of a square, you first need to prompt the user to enter the length of one side of the square. You can then calculate the area by squaring the length (multiplying it by itself) and finally display the result. Here's a simple example: INPUT "Enter the length of the side of the square: ", side area = side * side PRINT "The area of the square is: "; area