华师一附中OI组
标题:
P1425 小鱼的游泳时间
[打印本页]
作者:
vc_vitamine
时间:
2018-6-8 15:44
标题:
P1425 小鱼的游泳时间
https://www.luogu.org/problemnew/show/P1425
题目描述
伦敦奥运会要到了,小鱼在拼命练习游泳准备参加游泳比赛,可怜的小鱼并不知道鱼类是不能参加人类的奥运会的。这一天,小鱼给自己的游泳时间做了精确的计时(本题中的计时都按24小时制计算),它发现自己从a时b分一直游泳到当天的c时d分,请你帮小鱼计算一下,它这天一共游了多少时间呢?小鱼游的好辛苦呀,你可不要算错了哦。
输入输出格式
输入格式:
一行内输入4个整数,分别表示a,b,c,d。
输出格式:
一行内输出2个整数e和f,用空格间隔,依次表示小鱼这天一共游了多少小时多少分钟。其中表示分钟的整数f应该小于60。
输入输出样例
输入样例#1:
12 50 19 10
输出样例#1:
6 20
作者:
tongyuze
时间:
2018-6-14 22:53
#include<iostream>
using namespace std;
int x,y;
int main()
{
cin>>x;
if(x<=150) y=0.4463*x;
cout<<y;
else if(x<=400&&x>150) y=0.4663*(x-150)+69.945;
cout<<y;
else y=183.52+(x-400)*0.5663;
cout<<y;
return 0;
}
作者:
tongyuze
时间:
2018-6-15 13:52
tongyuze 发表于 2018-6-14 22:53
#include
using namespace std;
int x,y;
发错了!!!!!!!!!!!
作者:
tongyuze
时间:
2018-6-15 13:53
#include<iostream>
using namespace std;
int a,b,c,d,e;
int main()
{
cin>>a>>b>>c>>d;
e=(60*c+d)-(60*a+b);
cout<<e;
return 0;
}
作者:
倚窗倾听风吹雨
时间:
2018-6-27 07:39
#include<iostream>
using namespace std;
int a,b,c,d,e,f,st,en,la;
int main()
{
cin>>a>>b>>c>>d;
st=a*60+b;
en=c*60+d;
la=en-st;
e=la/60;
f=la%60;
cout<<e<<" "<<f;
return 0;
}
复制代码
作者:
WJL
时间:
2018-7-2 22:10
#include<iostream>
using namespace std;
int a,b,c,d,e,f;
int main()
{
cin>>a>>b>>c>>d;
e=c-a;
f=d-b;
if(f<0)
{
e=e-1;
f+=60;
}
cout<<e<<' '<<f;
return 0;
}
复制代码
作者:
吴语林
时间:
2018-7-29 23:51
#include <cstdio>
#include <algorithm>
#include <iostream>
#include <cmath>
#include <cstring>
#include <map>
#include <string>
#include <vector>
#include <queue>
using namespace std;
int main()
{
int n,m,a,b;
scanf("%d%d%d%d",&a,&b,&n,&m);
int s=n-a,t=m-b;
if(t<0) t+=60,s--;
printf("%d %d",s,t);
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2