Answer:
#include <iostream>
#include<iomanip>
#include<ctime>
using namespace std;
double angleRad(double a)
{
a *= 0.0175;
return a;
}
int main()
{
srand(time(0));
double angle = rand() % 10;
cout << "Angle in degrees - " << angle;
cout << "\\\\Angle in radian - " << fixed << setprecision(2) << angleRad(angle);
return 0;
}
Step-by-step explanation: