任务描述
我们再来看看扑克牌问题:
过年的时候,朋友家人聚在一起,经常玩个活动。比如玩扑克牌,扑克牌有多种玩法,但一般起牌的时候,会按照某种序列拿在手中,有的人喜欢从大到小,有的人喜欢从小到大。
任务要求:扑克牌的牌面是从1-13,按照编程要求,使用for循环和冒泡排序从小到大将混乱的牌面重新排列。
测试说明
测试过程:
平台将编译用户补全后代码,并根据程序的输出判断程序是否正确。
以下是测试样例:
测试输入:
预期输出:
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace F3
{
class Program
{
static void Main(string[] args)
{
for(int i=1; i<=13; i++){
Console.WriteLine(""+i);
}
}
}
}