Untitled
Anonymous
c_cpp
02/08/2024 5:34 PM
312 B
13
Indexable
#include <iostream>
using namespace std;
float srar(float a, float b) {
float c = 2, srar;
srar = (a + b) / 2;
return srar;
}
int main() {
setlocale(LC_ALL, "Russian");
float a, b;
cin >> a >> b;
srar(a, b);
}
Editor is loading...
Leave a Comment