Untitled
unknown
plain_text
2 years ago
153 B
6
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;
}