Untitled

Anonymous
c_cpp
11/14/2023 7:15 PM
328 B
14
Indexable
#include <iostream>
using namespace std;

float obem(float x) {
	return x * x * x;
}
int main() {
	setlocale(LC_ALL, "Russian");
	cout << "Введите длину ребра: ";
	float x, a;
	cin >> x;
	a = obem(x);
	cout << a;
}
Editor is loading...
Leave a Comment