Untitled
Anonymous
plain_text
10/04/2023 8:29 PM
204 B
14
Indexable
#include <iostream>
using namespace std;
int main()
{
double cm;
cin >> cm;
float inches = cm / 2.54;
cout << inches;
}Editor is loading...
#include <iostream>
using namespace std;
int main()
{
double cm;
cin >> cm;
float inches = cm / 2.54;
cout << inches;
}