Відповідь:
#include <iostream>
using namespace std;
int main(){
int R1= 12, R2= 27, R3= 18,R;
R = (R1*R2*R3)/(R1+R2+R3);
cout << R;
return 0;
}
Пояснення:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
#include <iostream>
using namespace std;
int main(){
int R1= 12, R2= 27, R3= 18,R;
R = (R1*R2*R3)/(R1+R2+R3);
cout << R;
return 0;
}
Пояснення: