2501 Average Speed

  1. /*
  2. 第一行的速度可能为0,故初始速度要为0
  3. */
  4. #include<iostream>
  5. usingnamespacestd;
  6. intmain()
  7. {
  8. freopen("in.txt","r",stdin);
  9. inth,m,s,k(0);
  10. intpres(0),nows,time;
  11. doublesum=0.0;
  12. charc;
  13. while(scanf("%d%c%d%c%d",&h,&c,&m,&c,&s)!=EOF)
  14. {
  15. c=getchar();
  16. if(h==24)
  17. h=0;
  18. if(c!='\n')
  19. {
  20. if(pres!=0)
  21. {
  22. nows=s+m*60+h*60*60;
  23. time=nows-pres;
  24. sum+=time*k/3600.0;
  25. }
  26. cin>>k;
  27. }
  28. else
  29. {
  30. nows=s+m*60+h*60*60;
  31. time=nows-pres;
  32. if(k!=0)
  33. sum+=time*k/3600.0;
  34. if(h<10)
  35. cout<<0<<h<<":";
  36. else
  37. cout<<h<<":";
  38. if(m<10)
  39. cout<<0<<m<<":";
  40. else
  41. cout<<m<<":";
  42. if(s<10)
  43. cout<<0<<s<<"";
  44. else
  45. cout<<s<<"";
  46. printf("%0.2lfkm\n",sum);
  47. }
  48. pres=s+m*60+h*60*60;
  49. }
  50. return0;
  51. }
关键是输出格式的处理,还又要注意 24小时变为0小时

你可能感兴趣的:(C++,c,C#)