// Программа на c++ сорри не знаю си
#include <iostream>
#include <math.h>
using namespace std;
int input;
double func(int x)
{
if(x == 0)
return -1;
}else
if(x > 0)
return sqrt(x);
}
else
return pow(x, 2);
int main()
cout << "Enter value:\n";
cin >> input;
cout << "Result:\n";
cout << func(input) << endl;
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
// Программа на c++ сорри не знаю си
#include <iostream>
#include <math.h>
using namespace std;
int input;
double func(int x)
{
if(x == 0)
{
return -1;
}else
{
if(x > 0)
{
return sqrt(x);
}
else
{
return pow(x, 2);
}
}
}
int main()
{
cout << "Enter value:\n";
cin >> input;
cout << "Result:\n";
cout << func(input) << endl;
return 0;
}