Ответ:
Програма ниже
Объяснение:
Верcия python
print("cторона а: ")
a = float(input())
print("cторона b: ")
b = float(input())
print("cторона c: ")
c = float(input())
def P_find(a,b,c):
p = a+b+c
print(p)
P_find(a, b, c)
Програма c++
#include <iostream>;
int p = 0;
using namespace std;
void p_find(int a, int b, int c){
int p = int a + int b + int c;
cout << p;
}
int main(){
int a = 0;
int b = 0;
int c = 0;
cin >> a ;
cin >> b;
cin >> c;
p_find(a, b, c);
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Програма ниже
Объяснение:
Верcия python
print("cторона а: ")
a = float(input())
print("cторона b: ")
b = float(input())
print("cторона c: ")
c = float(input())
def P_find(a,b,c):
p = a+b+c
print(p)
P_find(a, b, c)
Програма c++
#include <iostream>;
int p = 0;
using namespace std;
void p_find(int a, int b, int c){
int p = int a + int b + int c;
cout << p;
}
int main(){
int a = 0;
int b = 0;
int c = 0;
cin >> a ;
cin >> b;
cin >> c;
p_find(a, b, c);
return 0;
}