int main () { const float sixty_sec =60; floatname1; float min; float first_sec;
ID: 3614498 • Letter: I
Question
int main ()
{
const float sixty_sec =60;
floatname1;
float min;
float first_sec;
intsecondstwo;
int secondsthree;
cout << "Entername of the runner ";
cin>> name1;
cin>> min;
cout<< "Enter remaining seconds ";
cin>> first_sec;
secondstwo = min * sixty_sec;
secondsthree = secondstwo + first_sec;
cout << name1<< secondsthree << endl;
return0;
}