#34736: C,C++,JAVA,PYTHON解法


1554101-0@g.puiching.edu.mo (P6A29_1300題了)

學校 : 澳門培正中學
編號 : 216811
來源 : [60.246.150.90]
最後登入時間 :
2024-10-10 18:56:38
a001. 哈囉 -- Brian Kernighan | From: [27.109.151.69] | 發表日期 : 2023-04-11 20:56

C:

 

include<stdio.h>
int main() {
 char s[9999];
while( scanf("%s",s)!=EOF ) {
 printf("hello, %s\n",s);
 }
 return 0;
}

 

C++:

 

#include <iostream>
using namespace std;

int main() {
string s;
 while(cin >> s){
cout << "hello, "<< s << endl;
 }
 return 0;
}

 

JAVA:

 

import java.util.Scanner;
public class JAVA {
    public static void main(String[] args) {
        Scanner cin= new Scanner(System.in);
        String s;
        while (cin.hasNext()) {
            s=cin.nextLine();
            System.out.println("hello, " + s);
        }
    }
}

 

PYTHON:

 

while True:
    try:
        s = input()
        print('hello, '+s)
    except:
        break

 
ZeroJudge Forum