《算法笔记》2.2小节——C/C++快速入门->顺序结构 例题1-1-1 按要求输出信息(1)

例题1-1-1 按要求输出信息(1)

题目描述
编写一个C程序,要求在屏幕上输出一下一行信息。

This is my first c program!
输入

输出
This is my first c program!
样例输入 Copy

样例输出 Copy
This is my first c program!

#include <stdio.h>
int main()
{
    
    
    printf("This is my first c program!");
    return 0;
}

猜你喜欢

转载自blog.csdn.net/DoMoreSpeakLess/article/details/109733008