Jump to content

[C++]Calculator de radicali


FnZ
 Share

Recommended Posts

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    int a;
    float R;
    cout << "Numarul este=";
    cin >>a;
    R=sqrt(a);
    cout << "Radicalul="<< R;
    return 0;
}

Mult Succes

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.