用C语言实现按“年/月/日”格式输出系统日期,按“时:分:秒”格式输出系统时间。
时间: 2023-09-15 13:20:38 浏览: 252
输出系统的日期与时间
好的,以下是使用 C 语言实现按“年/月/日”格式输出系统日期,按“时:分:秒”格式输出系统时间的代码:
```c
#include <stdio.h>
#include <time.h>
int main() {
time_t t = time(NULL);
struct tm tm = *localtime(&t);
// 输出系统日期
printf("系统日期为:%04d/%02d/%02d\n", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday);
// 输出系统时间
printf("系统时间为:%02d:%02d:%02d\n", tm.tm_hour, tm.tm_min, tm.tm_sec);
return 0;
}
```
输出结果如下:
```
系统日期为:2022/06/06
系统时间为:10:30:15
```
希望这段代码可以帮到你。
阅读全文