Untitled
Anonymous
c_cpp
10/03/2023 7:00 PM
296 B
11
Indexable
#include <iostream>
#include <string>
using namespace std;
int main()
{
double A;
double B;
cin >> A;
cin >> B;
cout << A / 2 << endl;
cout << A * B << endl;
cout << B / A << endl;
return 0;
}Editor is loading...