ภาษา C# อยากจะเขียนโค้ดให้เราสามารถ input แบบนี้ได้ต้องทำไงอะครับ บอกหน่อยนะครับ
สร้างเป็น Console App ครับ
Code (C#)
public class HelloWorld
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
for (int i=0; i < args.Length; i++)
{
Console.WriteLine("{0}", args[i]);
}
}
}
Date :
2011-07-27 21:33:37
By :
webmaster
Code (C#)
using System;
class Program
{
static void Main()
{
while (true) // Loop indefinitely
{
Console.WriteLine("Enter input:"); // Prompt
string line = Console.ReadLine(); // Get string from user
if (line == "exit") // Check string
{
break;
}
Console.Write("You typed "); // Report output
Console.Write(line.Length);
Console.WriteLine(" character(s)");
}
}
}
Date :
2011-07-27 21:34:17
By :
webmaster
Load balance : Server 04