練習問題/解答例/ループ練習/CSharp
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Roop
{
internal class Program
{
static void Main(string[] args)
{
for (var i = 1; i <= 5; i++)
{
Console.WriteLine("Hello World!");
}
}
}
}
終了行:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Roop
{
internal class Program
{
static void Main(string[] args)
{
for (var i = 1; i <= 5; i++)
{
Console.WriteLine("Hello World!");
}
}
}
}
ページ名: