首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
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
全部(1)
C语言(1)