L1-014 簡單題 (5分)
這次真的沒騙你 ———— 這道超級簡單的題目沒有任何輸入,
你只需要在一行中輸出事實:This is a simple problem. 就可以了,
輸入樣例:
無
輸出樣例:
This is a simple problem.
代碼:
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"This is a simple problem."<<endl;
return 0;
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/51082.html
標籤:C++
下一篇:C++ 類中的函式多載
