PTA L1-014 简单题 C++实现

简单题

这次真的没骗你 —— 这道超级简单的题目没有任何输入。
你只需要在一行中输出事实:This is a simple problem. 就可以了。
输入样例:

输出样例:

This is a simple problem.

Talk is cheap. Show me the code.

#include<iostream>

using namespace std;
int main()
{    
	cout<<"This is a simple problem.";
} 

测试结果

在这里插入图片描述

发布了24 篇原创文章 · 获赞 1 · 访问量 218

猜你喜欢

转载自blog.csdn.net/weixin_43646424/article/details/104433050