08/09/03 00:23:04
>499
ひまなので
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace baka1
{
class Program
{
static string[,] users = {
{"uid1", "pwd1","諡�蠖楢�蜷�","莨夂、セ繧ウ繝シ繝牙錐","繧「繧ッ繧サ繧ケ蛹コ蛻�蜷�","繧√k縺ゅ←"},
{"uid1", "pwd1","諡�蠖楢�蜷�","莨夂、セ繧ウ繝シ繝牙錐","繧「繧ッ繧サ繧ケ蛹コ蛻�蜷�","繧√k縺ゅ←"},
};
static void Main(string[] args)
{
for (int i = 0; i < users.Length; i++)
{
if (users[i, 0] == args[0] && users[i, 1] == args[1])
{
Console.WriteLine("user驟榊�励�ョi逡ェ逶ョ繧偵�励Μ繝ウ繝�");
}
}
}
}
}