Submission #1240244


Source Code Expand

using System;using System.Linq;

public class Test
{
	public static void Main()
	{
		// your code goes here
		for(int i=0;i<50;i++){Console.WriteLine(Read.Str);}
	}
}
public static class Read
{
	
    static int Int() {
        return int.Parse(Console.ReadLine());
    }
    static int[] Ints() {
        return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray();
    }
    static string Str(){return Console.ReadLine();}
static string[]Strs(){return Console.ReadLine().Split();}
}
	

Submission Info

Submission Time
Task A - ○×ブロック
User rayhotate
Language C# (Mono 4.6.2.0)
Score 0
Code Size 518 Byte
Status CE

Compile Error

./Main.cs(8,33): error CS1502: The best overloaded method match for `System.Console.WriteLine(bool)' has some invalid arguments
/usr/lib/mono/4.5/mscorlib.dll (Location of the symbol related to previous error)
./Main.cs(8,48): error CS1503: Argument `#1' cannot convert `method group' expression to type `bool'