Visual Studio 2008 Part 18at TECH
Visual Studio 2008 Part 18 - 暇つぶし2ch43:デフォルトの名無しさん
09/09/04 06:46:37
インチキでいいんならこれでもいいな。
using System;
using System.IO;
using System.Net;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
WebClient wc = new WebClient();
Stream st = wc.OpenRead("URLリンク(www.usamimi.info)");
char[] c = { '\n',' ','\t' };
string[] s = new StreamReader(st).ReadToEnd().Split(c,StringSplitOptions.RemoveEmptyEntries);
for (int i = 2; i < 1000000; ++i)
{
int a = Int32.Parse(s[i]);
if (a > 1000) break;
Console.Out.WriteLine(s[i]);
}
}
}
}



次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch