C/C++调用系统函数API显示系统时间

计算机操作系统上课作业:
C/C++调用系统函数API显示系统时间,代码展示如下
[code]
#include <stdio.h>
#include <math.h>-
#include <dos.h>
#include <time.h>
#include <windows.h>
#include <conio.h>

void main()
{
	tm *curtime;
	time_t t;
	do
	{
	    t=time(NULL);
		curtime=localtime(&t);/*得到当前系统时间*/
		printf("*********************************************\n");
		printf("** This is a simple clock program.         **\n");
		printf("**                                         **\n");
		printf("*********************************************\n");
		printf("The current time is:\n");
		if((float)curtime->tm_hour<=12)         /*午前的处理*/
		{
			printf("AM ");
			if((float)curtime->tm_hour<10)
				printf("0");   /*十点之前在小时数前加零*/
			printf("%.0f:",(float)curtime->tm_hour);
		}
		else         /*午后的处理*/
		{
			printf("PM ");
			if((float)curtime->tm_hour-12<10)
				printf("0");
			printf("%.0f:",(float)curtime->tm_hour-12);
		}
		if((float)curtime->tm_min<10)
			printf("0");
		printf("%.0f:",(float)curtime->tm_min);
		if((float)curtime->tm_sec<10)
			printf("0");
		printf("%.0f",(float)curtime->tm_sec);
		printf("\n");
		printf("\n");
		printf("\n");
		printf("\n");
		printf("\n");
		printf("\n");
		Sleep(1);      /*延时一秒后刷新*/
		system("cls");
	}while(1);
	char a[512];
    unsigned long size=512;
    GetComputerName(a,&size);
    printf("The computer's name is:/n ");
    printf("%s",a);
    printf("/n");
}
[/code]

分享给大家了哦~~
posted on 2012-04-12 09:05 刘浒 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/liuhu/archive/2012/04/12/3322373.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值