2014年9月13日 星期六

a001:哈囉

內容

學習所有程式語言的第一個練習題
請寫一個程式,可以讀入指定的字串,並且輸出指定的字串。 

輸入說明

輸入指定的文字

輸出說明

輸出指定的文字

範例輸入 

world
C++
mary

範例輸出  

hello, world
hello, C++
hello, mary

提示

背景知識: 基本顯示

程式說明:因為系統會賦予數量不一的測試資料來測驗您的程式是否正確,因此必須先以一個 while 迴圈來讀取所有的測試資料。

出處 Brian Kernighan 


範例:

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

                }

        }

}


如果您喜歡我的文章,請在文章最末按5下Like!
我將得到LikeCoin的回饋:)

回饋由LikeCoin基金會出資,您只要註冊/登入帳號(FB、Google帳號都可以註冊,流程超快),按L五次左鍵,可以贊助我的文章且完全不會花到錢!
支持創作,正向交流:)

沒有留言:

張貼留言