#include <iostream>
#include <cmath>
using namespace std;
int main(){
int a, b, c, per;
cout << "input a" << endl;
cin >> a;
cout << "input b" << endl;
cin>> b;
Якщо дано два катети то
c=sqrt(pow(a,2)+pow(b,2));
per = a + b + c;
Якщо дано один катет і гіпотенуза ( а - гіпотенуза, b катет.)
c=sqrt(pow(a,2)-pow(b,2));
cout << "Your perymetr is eqaul to " << per << endl;
}
#include <iostream>
#include <cmath>
using namespace std;
int main(){
int a, b, c, per;
cout << "input a" << endl;
cin >> a;
cout << "input b" << endl;
cin>> b;
Якщо дано два катети то
c=sqrt(pow(a,2)+pow(b,2));
per = a + b + c;
Якщо дано один катет і гіпотенуза ( а - гіпотенуза, b катет.)
c=sqrt(pow(a,2)-pow(b,2));
per = a + b + c;
cout << "Your perymetr is eqaul to " << per << endl;
}