私はゲームのためにブックと呼ばれるC++モジュールから第3章(機能)の演習をしていました。 私ができないこの1つの質問は、書籍と私の電卓によると、63.42度を返すべきである(2,4)のatanf(4/2)を見つけることです。atanfは私に間違った答えを与えます
代わりに1.107度になります。ここで
は私のコードです:
#include "stdafx.h"
#include <iostream>
#include <cmath>
using namespace std;
void tani(float a,float b) //Finds the Tan inverse
{
float res;
res = atanf(b/a);
cout << res << endl;
}
int main()
{
cout << "Enter The Points X and Y: " << endl;
float x, y;
cin >> x >> y; //Input
tani(x,y); //calling Function
}