**Create your own graph by moving ship across the screen!


A+    A−    B  
Home
Algebra
Math Games
Geometry
Private Tutors
Interactive
Trigonometry
Jobs
Teacher Resources

AddThis Social Bookmark Button

C++

#include <math.h >

Related Links: random numbers | Square Root c++ home

Square root of a number

 int n = 12;
 n = sqrt(n);
  cout << n << endl;

Random Number
#include < cstdlib >
example
int  r = rand();
now r holds a value between 0 and RAND_MAX
Top
AddThis Social Bookmark Button