【0星難度】C++程序設計:輸出一行字符“This is a C++ program.”

【問題描述】

輸出一行字符:“This is a C++ program.”。

 

【輸入形式】


【輸出形式】

This is a C++ program.

 

#include <iostream>
using namespace std;
int main() {
	cout<<"This is a C++ program."<<endl;
	return 0;
}

 

發佈了25 篇原創文章 · 獲贊 28 · 訪問量 6004
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章