題目
題目連結
學習所有程式語言的第一個練習題
請寫一個程式,可以讀入指定的字串,並且輸出指定的字串。
比如:輸入字串 "world", 則請輸出 "hello, world"
範例輸入
範例輸出
說明
定義一個變數,用來儲存使用者的輸入內容,然後使用者在終端輸入字串,之後再輸出。
程式碼
Java
1 2 3 4 5 6 7 8 9 10 11 12
| import java.util.Scanner;
public class a001 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in);
String input = scanner.nextLine(); System.out.println("hello, " + input);
scanner.close(); } }
|
C++
1 2 3 4 5 6 7 8
| #include <iostream> using namespace std;
int main() { string input; cin >> input; cout << "hello, " << input; }
|
C
1 2 3 4 5 6 7
| #include <stdio.h>
int main() { char input[1000]; scanf("%s", input); printf("hello, %s", input); }
|
Python
1 2
| word = input() print(f"hello, {word}")
|