Untitled

 avatar
unknown
c_cpp
2 years ago
244 B
3
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