0
点赞
收藏
分享

微信扫一扫

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


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

时间限制: 1 Sec  内存限制: 12 MB

题目描述

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

This is my first c program!

输入

输出

This is my first c program!

样例输入



样例输出


This is my first c program!


经验总结

emmm,加油!

AC代码

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

 

举报

相关推荐

0 条评论