Im looking for a way to calculate something like this in cpp:
x = √y * z
heres a part of my script so that you can make the 'fix' compatible.
Code:case '2': cout<<"\n"; cout<<"Write the amount of Resistance..\n"; cin>>num; cout<<"Write the amount of Current..\n"; cin>>num2; cout<<num * num2; cout<<"\n"; cout<<"\n"; break;