永发信息网

c编程中,输入小时,分钟,秒钟,输出总共多少分钟

答案:3  悬赏:0  手机版
解决时间 2021-01-04 13:21
  • 提问者网友:留有余香
  • 2021-01-03 20:47
c编程中,输入小时,分钟,秒钟,输出总共多少分钟
最佳答案
  • 五星知识达人网友:野慌
  • 2021-01-03 21:11
#include <stdio.h>
int main()
{
    int h,m,s;
    double r;
    scanf("%d%d%d",&h,&m,&s);
    r=h*60+m+s/60.0;
    printf("%lf min\n", r);
    return 0;
}
全部回答
  • 1楼网友:一秋
  • 2021-01-03 22:21
#include<stdio.h> void main() { int h,m,s; float mm; scanf("%d%d%d",&h,&m,&s); s+=m*60; s+=h*3600; mm=s; mm/=60; printf("%f\n",mm); }
  • 2楼网友:摆渡翁
  • 2021-01-03 21:57
程序如下: 1、 #include<stdio.h> main() {     int time_s,hh,mm,ss;     scanf("%d", time_s);      hh =  time_s /3600;      mm = ( time_s - hh*3600)/60;      ss =   time_s - hh*3600 - mm*60     printf("%d second = %d: %d: %d\n",time_s,hh,mm,ss); } 2、 #include<stdio.h> main() {     char a;     a = getchar();     printf("%s\n", tolower(a)); }
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯