哈囉


Submit solution

Points: 100 (partial)
Time limit: 1.0s
Memory limit: 1G

Author:
Problem type

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

輸入格式

指定的文字

輸出格式

輸出指定的文字

範例輸入

world
C++
mary

範例輸出

hello, world
hello, C++
hello, mary

提示

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


Comments


  • 0
    Go  commented on Nov. 2, 2024, 9:08 a.m. edited

    golang 的練習器, 很棒。 go go


  • 0
    Csharp  commented on Nov. 1, 2024, 10:58 a.m.

    貢獻 c# 的起手式:

    using System; using System.IO;

    class Test {

    public static void Main()
    {
        string line;
        while ((line = Console.ReadLine()) != null) {
            Console.WriteLine("hello, " + line);
        }
    }

    }


    • 0
      Csharp  commented on Nov. 1, 2024, 11:02 a.m.

      比 python 還慢。


  • 0
    電研網管打工人  commented on Oct. 31, 2024, 1:31 p.m.

    LittleOrange請問您願意讓我們在使用手冊張貼你的brainfuck解法嗎


    • 0
      dc  commented on Nov. 1, 2024, 9:53 a.m.

      建議把 go 或 c# 開起來。


      • 0
        電研網管打工人  commented on Nov. 1, 2024, 10:06 a.m.

        打開了耶~ 這兩天在弄runtimes 一堆bug 頭大


  • 1
    電研網管打工人  commented on Oct. 16, 2024, 10:11 a.m.

    10/16 已修復測資


  • 0
    dc  commented on Oct. 13, 2024, 3:00 a.m.

    還不太會操作, 有些題目能被看答案。