CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 输入10个整数

搜索资源列表

  1. list

    0下载:
  2. 实现线性表的顺序存储表示及基于顺序存储表示实现线性表的初始化、查找、插入与删除等基本操作。具体实现要求:1.从键盘输入10个整数,产生顺序表,并输入结点值。2.从键盘输入1个整数,在顺序表中查找该结点的位置。若找到,输出结点的位置;若找不到,则显示“找不到”。3.从键盘输入2个整数,一个表示欲插入的位置i,另一个表示欲插入的数值x,将x插入在对应位置上,输出顺序表所有结点值,观察输出结果。4.从键盘输入1个整数,表示欲删除结点的位置,输出顺序表所有结点值,观察输出结果。附有实验结果截图
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:81.36kb
    • 提供者:张娟
  1. 3

    0下载:
  2. 这个程序是将从键盘输入10个整数,如果输入的数大于等于0,则回显输入的整数,如果输入的数小于0,则等待用户输入下一个数.-This procedure is from the keyboard input 10 integer, if you type the number of greater than or equal to 0, while the significant input of integers, if the number entered is less than 0, th
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:4.02kb
    • 提供者:gaolinyu
  1. Integer

    0下载:
  2. 使用java.lang.Math类,当键盘输入10个整数(0-99),找出它们之中的最大者及最小者,并统计大于50的整数个数。 * 且运用异常处理。(eg: 101, 1a ...)-Use java.lang.Math class, when the keyboard input 10 integer (0-99), the largest of them were identified and the least, and an integer greater than 50 the
  3. 所属分类:Java Develop

    • 发布日期:2017-04-02
    • 文件大小:1.53kb
    • 提供者:zxq
  1. zx

    0下载:
  2. 写一程序,其功能是:输入10个整数,将其中最小的数与第一个数对换,把最大的数与最后一个数对换。输出结果-Write a program, its functions are: input 10 integer, will be the smallest number with the first number on the exchange, the largest number and the last number on the exchange. Output
  3. 所属分类:assembly language

    • 发布日期:2017-04-05
    • 文件大小:1.31kb
    • 提供者:zx
  1. maxmin

    0下载:
  2. 输入10个整数,求最大最小值,dos界面显示到显示器上。-max,min
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:8.55kb
    • 提供者:duanming
  1. data-structure-operations

    0下载:
  2. 输入10个整数,将其中最小的数与第一个对换,最大的数与最后一个对换。写出三个自定义函数:输入十个数进行处理,数出十个数。-Input 10 integers, which will be the smallest number with the first on the exchange, the largest number and the last one on the exchange. Name three custom function: Enter the number of pro
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2.41kb
    • 提供者:何凯明
  1. bubble-sort

    0下载:
  2. 用c++写一个冒泡排序程序,输入10个整数,输出排序结果-With c++ to write a bubble sort program, enter 10 integers, output sequencing results
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:2.41kb
    • 提供者:单凤丽
  1. 10.19

    0下载:
  2. windows操作系统编程示例,主进程由命令行参数输入两个整数,主进程创建两个子进程,分别把两个整数传给两个子进程,子进程计算1+2+..+n一直加到整数的前N项和并输出。如果是输入的整数是负数,则退出进程。-windows operating system, programming examples, the main process parameters from the command line input two integers, the main process to create
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:1.17kb
    • 提供者:程少博
  1. c-da-an

    0下载:
  2. 输入10个整数,将其中最小的数与第一个数对换,把最大的数与最后一个对换,要求用三个函数来写-c is very important! you can read it.And you can do many things.you can help the man!And you can do many things.you can help the man!And you can do many things.you can help the man!
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:34.71kb
    • 提供者:扬扬
  1. ArrayInput

    0下载:
  2. 个人原创代码:编写Java Application程序, 从命令行参数输入10个整数并保存在数组中,求数组中最大、最小、数据的和、平均值。-Personal original code: write a Java application program, enter 10 integers from the command line parameters and stored in the array, find an array of maximum, minimum, data and av
  3. 所属分类:Java Develop

    • 发布日期:2017-04-08
    • 文件大小:894byte
    • 提供者:李瑞
  1. insertion-sort-

    0下载:
  2. 任意顺序输入10个整数,把输入的第一个数放在数组的第一个位置,以后每读入个数都和已存入的数进行比较,确定该数按照从小到大的顺序在数组应处的位置-insertion sort
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:1.12kb
    • 提供者:jacket
  1. SXBIAO

    0下载:
  2. 顺序表的查找、插入与删除。设计算法,实现线性结构上的顺序表的产生以及元素的查找、插入与删除。具体实现要求: 1. 从键盘输入10个整数,产生顺序表,并输入结点值。 2. 从键盘输入1个整数,在顺序表中查找该结点的位置。若找到,输出结点的位置;若找不到,则显示“找不到”。 3. 从键盘输入2个整数,一个表示欲插入的位置i,另一个表示欲插入的数值x,将x插入在对应位置上,输出顺序表所有结点值,观察输出结果。 4. 从键盘输入1个整数,表示欲删除结点的位置,输出顺序表所有结点值,观察输
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:30.28kb
    • 提供者:周周
  1. VCPPinsort

    0下载:
  2. 1. 采用插入排序的方法,输入10个整数按升序排序后输出。要求编写一个通用的插入排序函数InsertSort()。它带有三个参数,第一个参数是含有n个元素的数组,这n个元素已按升序排序;第二个参数给出当前数组中元素的个数;第三个参数是要插入的整数。该函数的功能是将一个整数插入到数组中,然后进行排序。另外还需要一个用于输出数组元素的函数Print(),要求每一行输出5个元素。-A. Insertion sort, the output of input 10 integers sorted in
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3.69kb
    • 提供者:guosiqi
  1. cPP

    0下载:
  2. C++编程——从键盘上输入10个整数,存放在一维数组中,请编程输出其中的最大元素、最小元素的值以及它们的下标。-C++ programming- 10 integer input from the keyboard and stored in the one-dimensional array, the programming output of which the largest element, the minimum value of the element, as well as the
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:699byte
    • 提供者:李玉
  1. 6_3

    0下载:
  2. c语言程序设计,题目:输入10个整数, 输出最小的数并输出最小数的位置-c language programming, entitled: input 10 integers, output the smallest number and the output of the position of the minimum number of
  3. 所属分类:Document

    • 发布日期:2017-12-02
    • 文件大小:533byte
    • 提供者:
  1. hw043

    0下载:
  2. 从键盘输入10个整数,放入一个一维数组,然后将前5个数与后5个数对换,即1与10,2与9,…5与6对换。 (提示:可以用Scanner类)-Input from the keyboard 10 integers into a one-dimensional array, and then, after the first 5 numbers and number 5 on the exchange, that is one with 10,2 and 9, ... 5 and 6 pairs o
  3. 所属分类:Java Develop

    • 发布日期:2017-11-22
    • 文件大小:709byte
    • 提供者:乐山大佛
  1. array

    0下载:
  2.   1. 使用下面的方法头编写方法,消除数组中重复出现的值。输入10个整数,显示去除重复数后的结果。(设计性实验)    public static void int[] removeDuplicate(int[] number)-1 Use the following method header preparation methods, eliminating repeated array values. Enter 10 integers, show the results after
  3. 所属分类:Java Develop

    • 发布日期:2017-04-02
    • 文件大小:48.47kb
    • 提供者:
  1. linked-list

    0下载:
  2. 从键盘依次输入10个整数(彼此以若干空格隔开),在内存中建立一个单链表。然后完成以下操作: ① 查找:输入一个欲查找的整数,找到则显示第一个相匹配的整数在单链表中所处的位置,若不存在,则显示“Not Found”。 ② 删除:输入一个欲删除的整数e,若存在则在单链表中删除第一个值为e的元素。 ③ 插入:输入一个欲插入位置i和欲插入元素e,将e插入到第i个整数之前(注意i的合法性)。-Single linked list to create, delete, search, inser
  3. 所属分类:source in ebook

    • 发布日期:2017-03-31
    • 文件大小:1.06kb
    • 提供者:黄磊
  1. c

    0下载:
  2. 输入10个整数,将其中最小的数与第一个数对换,把最大的数与最后一个数对换。写三个函数; ①输入10个数;②进行处理;③输出10个数-Enter 10 integers, which will be the smallest number with the first number on the exchange, the largest number with the last number on the exchange. Write three functions ① enter 10 d
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-27
    • 文件大小:160.12kb
    • 提供者:
  1. Desktop

    0下载:
  2. 输入10个整数,将最小的数与第一个数调换,把最大的数与最后一个数调换(Enter 10 integers, change the minimum number from the first number, and change the maximum number to the last number.)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:4kb
    • 提供者:654456
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com