N
Norden26
При конечном выводе результата число (допустим 4) отображается как 1.86941e-307.
Что самое странное в строках типа "cout<<"sq "<<sq<<endl;" все правильно.
Что самое странное в строках типа "cout<<"sq "<<sq<<endl;" все правильно.
Код:
#include <iostream>
#include <math.h>
using std::cin;
using std::cout;
using std::endl;
int main()
{
double num, lv, sq, qv;
//Просим ввести число
cout<<"Enter a number : ";
cin>>num;
//Показываем число под корнем
cout<<"The squared "<<num<<" is : "<<sq<<endl;
//Просим ввести степень
cout<<"Enter a level of degree : ";
cin>>lv;
cout<<"The number "<<num<<" in degree "<<lv<<" is : "<<qv<<endl;
sq = sqrt(num);
qv = pow(num,lv);
cout<<"sq "<<sq<<endl;
cout<<"qv "<<qv<<endl;
return 0;
}