#24148: python(一行)、c++解法


s105151@stes.tp.edu.tw (黃柏餅)

學校 : 不指定學校
編號 : 124906
來源 : [123.193.195.39]
最後登入時間 :
2022-07-19 15:27:08
a001. 哈囉 -- Brian Kernighan | From: [123.192.111.233] | 發表日期 : 2021-01-23 13:59

c++:

 

#include<iostream>

using namespace std;

int main(){

    string a;

    cin >> a;

    cout << "hello, " << a;

}

 

python:

 

print("hello," , input())

 
ZeroJudge Forum