首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴LQASD的代码贴C语言
#include <stdio.h>
#include <time.h>
void main()
{
int a, b;
struct tm *tmptr;
time_t secnow;
time(&secnow);
tmptr = localtime(&secnow);
int hour1, min1;
hour1 = tmptr->tm_hour;
min1 = tmptr->tm_min;
......................
阅读全部 | 2013年10月31日 23:05
#include <stdio.h>
#include <time.h>
void main()
{
int a, b;
struct tm *tmptr;
time_t secnow;
time(&secnow);
tmptr = localtime(&secnow);
int hour1, min1;
hour1 = tmptr->tm_hour;
min1 = tmptr->tm_min;
......................
阅读全部 | 2013年10月31日 23:04
1
LQASD