任务描述
春节期间,在某商场商店经常举行一种活动,完成商店规则的客人将会得到免单的机会。商店规则有两条:
第一条,客人从1开始写,一直到600
第二条,写的过程中,不能出现停顿和错误
这道循环题目看似容易,但能够顺利完成的少之又少。
任务要求:使用do...while循环,连续不断的打印从1到20的数字。
测试说明
测试过程:
平台将编译用户补全后代码,并根据程序的输出判断程序是否正确。
以下是测试样例:
测试输入:
预期输出:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace F2
{
class Program
{
static void Main(string[] args)
{
{
int i = 0;
do
{
i++;
Console.WriteLine("" + i);
} while (i <= 19);
}
}
}
}