ytu3454

news/2025/1/15 22:54:05/

3454 假定已经获取题库中的试题号,并存放在数组arrayKT中。例如, int [] arrayKT={10, 13, 18, 19, 20, 22, 30, 31}。定义一个静态成员方法,该方法实现从上述数组中随机抽出n(n=arrayKT.Length-1)道考题, 并组成一个考题字符串。比如,随机从arrayKT中抽取n题组成考题字符串:“10, 13, 18, 20, 22, 30, 31”。要求,组成考题字符串中考题不重复,输出所有可能的字符串。

using System;

using System.Collections.Generic;

using System.Diagnostics.CodeAnalysis;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            int n = Convert.ToInt32(Console.ReadLine());

            string str = Console.ReadLine();

            string[] str1 = str.Split(' ');

            int[] number = new int[n];

            for (int i = 0; i < str1.Length; i++)

            {

                number[i] = Convert.ToInt32(str1[i]);

            }

            for (int i = number.Length - 1; i >= 0; i--)

            {

                for (int j = 0; j < number.Length; j++)

                {

                    if (number[i] != number[j])

                    {

                        Console.Write("{0} ", number[j]);

                    }

                }

                Console.WriteLine();

            }

        }

    }

}


http://www.ppmy.cn/news/509226.html

相关文章

SDUT 3931 N!

SDUT 3931 N! Time Limit: 1000MS Memory Limit: 65536KB Problem Description 给出两个数 n, m。求 3748-1 和 3748-2。 计算公式&#xff1a; Input 输入数据有多组&#xff08;数据组数不超过 250&#xff09;&#xff0c;到 EOF 结束。 对于每组数据&#xff0c;输入…

[UOJ164]V

题目 传送门 to UOJ&#xff08;看不了可以看下方的简化题意&#xff09; 思路 简化题意 一个长度为 n n n 的序列&#xff0c;支持五种操作&#xff1a; 区间加&#xff1a; ∀ a ∈ [ l , r ] , a ′ a x \forall a\in[l,r],aax ∀a∈[l,r],a′ax区间减&#xff1a; …

hdu3419

/* 分析&#xff1a; 脑袋跟抽了似的&#xff0c;一道水水的深搜写了半天&#xff0c; 还好一次ac了&#xff0c;囧。。。 2012-09-24 */ #include"stdio.h" #include"string.h" int a,b,c; int ans; int hash[10]; int base[11],limit; int t_a; int t_b;…

hdu 4419

http://acm.hdu.edu.cn/showproblem.php?pid4419 题意&#xff1a;略 解法&#xff1a;联想普通的矩形面积并&#xff0c;这个题做法基本一样&#xff0c;只是由于不同的颜色的线段覆盖后会变成另一种颜色&#xff0c;所以线段树节点记录的域应该变成每种颜色的总长度&#…

OpenStack(2)--项目(租户)、用户、角色

一、项目&#xff08;租户&#xff09;、用户、角色的关系 重点理解项目&#xff08;project/租户&#xff09;、用户&#xff08;user&#xff09;、角色&#xff08;role&#xff09;三者之间的关系&#xff0c;首先这三者都可以单独新建&#xff0c;但是绑定关系是通过open…

Python位运算符详解

Python 位运算按照数据在内存中的二进制位&#xff08;Bit&#xff09;进行操作&#xff0c;它一般用于底层开发&#xff08;算法设计、驱动、图像处理、单片机等&#xff09;&#xff0c;在应用层开发&#xff08;Web 开发、Linux 运维等&#xff09;中并不常见。想加快学习进…

探索视频文本特征加速检索解决方案——倒排索引

前言 随着视频内容的不断增加&#xff0c;如何快速准确地检索到所需的视频成为了一个重要的问题。而视频文本特征加速检索解决方案——倒排索引&#xff0c;成为了解决这一问题的有效手段。该技术可以加速文本和视频片段特征匹配、相似度排序过程&#xff01; 定义——何为“…

框架unittest学习

一、单元测试框架对比 基于Python语言: unittest和口pytest 基于Java语言:junit和testng 1.用例编写规则 unittest:提供了testcases测试用例、testsultes测试套件、testfixtures测试圄件或夹具、 testloadt试加载器&#xff0c;testrunner测试运行器。必须遵守以下规则: (1 )…