{
int h,m,s;
scanf("%d:%d:%d", &h,&m,&s);
s=s+20;
if(s>59)
{
s=s%60;
m++;
if(m>59)
{
m=m%60;
h++;
if(h>23)
h=0;
}
}
printf("%02d:%02d:%02d\n", h, m, s);
return 0;
}
分期还款
#include <stdio.h>
#include <math.h>
int main()
{
int d,p;
double r,a,m;
scanf("%d %d %lf",&d,&p,&r);
a=(p/(p-d*r));
m=log(a)/log(1+r);
if(p>0&&d>0)
{
if(d<=m*p)
printf("%.1f",m);
else
printf("God");
}
else
printf("0.0");
return 0;
}
第五章
字母分类统计