标签:int style names 变量 span bsp 运行时 时间 printf
#include<iostream> #include<cstdio> using namespace std; int main() { int a,b; cin>>a>>b; int c; c=(b-a); if(c%100>=50) c+1; //这里错误,应先换算成正常单位在进行+1的四舍五入 c=c/100; int s,m,h; s=c%60; m=(c/60)%60; h=(c/60/60); printf("%02d:%02d:%02d",h,m,s); }
//正确代码: #include<iostream> #include<cstdio> using namespace std; int main() { int a,b; cin>>a>>b; int c; c=(b-a); if(c%100>=50) { c=c/100+1; }else{ c=c/100; } int s,m,h; s=c%60; m=(c/60)%60; h=(c/60/60); //这里可以不用 用变量替换。可直接在输出里计算 printf("%02d:%02d:%02d",h,m,s); }
标签:int style names 变量 span bsp 运行时 时间 printf
原文地址:https://www.cnblogs.com/leamant/p/13288070.html