【算法笔记】Codeup 100000566A

本专栏仅仅用于个人记录刷题过程,如有更好的解决方法,可以留言哦

题目要求

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

This is my first c program

要求输入

要求输出

This is my first c program! 

代码如下

#include <stdio.h>
int main(){
	printf("This is my first c program! ");
	return 0;
} 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章