題目連結 https://zerojudge.tw/ShowProblem?problemid=a001。
此題是練習輸入與輸出,底下用C、C++、Python、Java做練習。
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;
}
Python程式碼:
import sys
for s in sys.stdin:
print('hello, '+s)
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);
}
}
}
沒有留言:
張貼留言