Algorithm 版 (精华区)

发信人: lofe ()感激生活(), 信区: Algorithm
标  题: Ash - test.c
发信站: 哈工大紫丁香 (Sun Sep  3 08:26:24 2000), 转信

#include <stdio.h>
#include <time.h>

static void print_time (clock_t);

int main (void)

{
        unsigned hh, mm, ss, tt;
        long x;

        hh = 15;
        mm = 59;
        ss = 59;
        tt = 9;

        x = hh;
        x *= 60;
        x += mm;
        x *= 60;
        x += ss;
        x *= 10;
        x += tt;

        x *= CLK_TCK;
        x /= 10;

        print_time (x);

        return 0;
}



static void print_time (clock_t t)

{
        long t2;
        unsigned t3;
        unsigned hh, mm, ss;

        t2 = t * 10 / CLK_TCK;
        hh = (unsigned) (t2 / 36000L);
        t3 = (unsigned) (t2 % 36000L);
        mm = t3 / 600;
        t3 %= 600;
        ss = t3 / 10;
        t3 %= 10;

        fprintf (stdout, "Time: ");
        if (hh)
                fprintf (stdout, "%d:%02d:%02d.%01d\n", hh, mm, ss, t3);
        else
                fprintf (stdout, "%d:%02d.%01d\n", mm, ss, t3);
}


--

Every problem has a solution.
                                infosite@263.net
※ 修改:.haojs 于 Sep  3 08:24:01 修改本文.[FROM: bbs.hit.edu.cn]
--
※ 转寄:.武汉白云黄鹤站 bbs.whnet.edu.cn.[FROM: bbs.hit.edu.cn]

--
☆ 来源:.哈工大紫丁香 bbs.hit.edu.cn.[FROM: haojs.bbs@bbs.whnet.]
[百宝箱] [返回首页] [上级目录] [根目录] [返回顶部] [刷新] [返回]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.591毫秒