#include <stdio.h> int main() { printf("===== \n ZUST\n=====\n"); return 0; }
时间: 2024-06-17 11:06:37 浏览: 80
#include <stdio.h>
4星 · 用户满意度95%
#include <stdio.h> 是一个C语言头文件,其中包含了一些标准输入输出函数的定义,如 printf() 和 scanf() 等等。在你的代码中,你使用了 printf() 函数来打印输出了一个字符串 "=====\n ZUST\n=====\n"。其中 \n 表示换行符。因此,运行这段代码将会在控制台上输出以下结果:
=====
ZUST
=====
阅读全文