CPP_Basics_Syntax/第一讲 变量、输入输出、表达式与顺序语句/t617.cpp

26 lines
585 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 两辆汽车在同一地点,同时,沿同一方向前进。
// 一辆车的速度为 60 km /
// h
// ,另一辆车的速度为 90 km /
// h
// 。
// 显然快车与慢车的距离会不断拉开每过一个小时60
// 分钟),两车的距离就拉开 30 公里。
// 现在,告诉你两车之间的距离为 L
// 公里,请你求出两车已经行驶了多长时间?
#include <iostream>
using namespace std;
int main()
{
int L;
cin >> L;
cout << (L << 1) << " minutos" << endl;
return 0;
}