Answers for "sqrt in c++ syntax"

C++
6

sqrt cpp

#include <math.h>

//get square root of a number "b"
int main(){
  	int a = 2; //declare number you want to take square root of
  	int sqrtNum = sqrt (a); //assign the sqrt value to a variable
  	cout << sqrtNum << endl;
	return 0;
}
Posted by: Guest on June-19-2020

Browse Popular Code Answers by Language