首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴anotherone的代码贴C语言
#include<stdio.h>
#include<time.h>
  main()
  {
  {
  time_t timer;
  struct tm *tblock;
  timer=time(NULL);
  tblock=localtime(&timer);
  int x=tblock->tm_hour;
  printf("现在是%d点",x);
  return 0;}
......................
阅读全部 | 2017年10月29日 23:28
1
anotherone