【題解】a001. 哈囉

【題解】a001. 哈囉

鯊魚Y.Y Lv2

a001. 哈囉

題解:
此題是程式小白最一開始接觸的題目也就是Hello world
注意空白要記得看(裁判機沒有人情味🥲),老手也會看錯所以寫題目一定要注意。

C++解法

1
2
3
4
5
6
7
8
9
#include <bits/stdc++.h>
using namespace std;

int main()
{
string a;
cin >> a;
cout << "hello, "+a << "\n";
}

Python解法

1
2
a=str(input())
print("hello, "+a)
範例輸入範例輸出
C++hello, C++
Taiwanhello, Taiwan
worldhello, world
  • 標題: 【題解】a001. 哈囉
  • 作者: 鯊魚Y.Y
  • 撰寫于 : 2024-08-19 03:53:55
  • 更新于 : 2024-08-19 03:59:46
  • 連結: https://redefine.ohevan.com/post/哈囉/
  • 版權宣告: 本作品采用 CC BY-NC-SA 4.0 进行许可。
留言
目錄
【題解】a001. 哈囉