- 新年趣事之债务
- 2015-07-22 15:23:54 @
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
double l,v,s,t;
scanf("%lf%lf",&l,&v);
t=(2*l)/(3*v);
s=v*t;
printf("%.1lf\n%.1lf",s,t);
//system("pause");
return 0;
}
5 条评论
-
q234rty LV 10 @ 2015-07-29 17:01:29
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
double l,v,s,t;
scanf("%lf%lf",&l,&v);
t=(2*l)/(3*v);
s=v*t;
printf("%.1f\n%.1f",s,t);
//system("pause");
return 0;
}printf 中使用 %lf 格式是不正确的。
-
2015-07-29 12:54:50@
请在贴代码时选中全部复制过来的代码按一下Tab。Markdown中
#
代表标题层级,然而Vijos将前几级的标题字号改小了。详情参见内容输入框下方的*编辑器快速入门*和*Markdown详细帮助*。 -
2015-07-29 00:03:22@
我也是啊,wa3次。。。用尽各种方法。。。
-
2015-07-23 08:58:07@
e
少打了井号 -
2015-07-22 20:38:10@
t=(2l)/(3v);是个什么鬼...
- 1