Арбуз

 avatar
unknown
plain_text
a year ago
328 B
6
Indexable
#include <string>
#include <iostream>
using namespace std;

int main()
{   
    double a; // дюймы
    double b; // сантиметры
    cout << "Введите значение в дюймах: ";
    cin >> a;
    cout << "Значение в сантиметрах: " << a*2.54 << endl;
    return 0;
}
Editor is loading...