Untitled
Anonymous
plain_text
10/04/2023 9:52 AM
296 B
16
Indexable
#include<iostream>
using namespace std;
int main()
{
double a;
cout << "введите число: " << endl;
cin >> a;
cout << a<< " дюймов"<< " в сантиметрах = " << a*2.54 << endl;
}
Editor is loading...