搜索资源列表
simplejavaprogramming
- 题目:打印出杨辉三角形(要求打印出10行题目:输入3个数a,b,c,按大小顺序输出。 题目:输入数组,最大的与第一个元素交换,最小的与最后一个元素交换,输出数组。 题目:有n个整数,使其前面各数顺序向后移m个位置,最后m个数变成最前面的m个数 题目:编写一个函数,输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数1/1+1/3+...+1/n-Topic: Print out the Triangle (10 lines required to pr
39709581pl0
- pl0编译器 语法分析 词法分析 要求输入PL/0语言源程序,输出中间代码表示的程序。-pl0bianyiqi
PrimeNum
- Java 输出 N 以内的素数。N为键盘输入。-Java program. Prime number
airplaneManagement
- 带有输入输出文件的航班管理系统,实现航班的预定,排座功能,并把航班信息保存在外部文件中。-airplane management system
triangle
- 输入三条边输出三角形的图形和面积 输入三条边输出三角形的图形和面积-Enter the three sides of the output graphics and area of the triangleEnter the three sides of the output graphics and area of the triangle
CollatzConjecture
- (1) 从控制台上输入一个自然数n ,然后,输出n 所产生的如上变化的序列; (2) (1)操作可以重复任意次,直到输入quit 为止。 -Entered from the console (1) a natural number n, then output n sequence of the above changes (2) (a) operation can be repeated any number of times, until you enter quit.
Simple-program
- 简单程序的编写,要求输入两个整数,输出这两个整数的和、差、积、商-Simple program written input two integers, and the output of these two integers, difference, product, business
hechajishang
- 编写一个应用程序,要求用户输入一个圆的半径(double类型),然后计算并输出圆的直径、周长、面积等信息-Write an application that requires the user to enter a circle radius (double type), then calculate and output the diameter of the circle, perimeter, area, and other information
maximum-
- 编写一个应用程序,要求用户输入两个整数,然后输出两个整数中的最大值-Write an application requires the user to input two integers, and then output to a maximum of two integers
BinaryToHexArray
- 将输入的二进制字符串装换为16进制字符串并输出-Equipment for the input binary string to hexadecimal string and output
BinaryToHex-(2)
- 将输入的二进制字符串装换为16进制字符串并输出-Equipment for the input binary string to hexadecimal string and output
mode_problem2_2
- 寻找一串无须数列的众数,输入输出均为文件操作,利用快排。-All looking for a bunch of no series, both input and output file operations, the use of fast row.
gongchengruanjian
- 稀疏矩阵压缩存储的基本操作实现实验 要求:数据元素类型ElemType取float。 1)从键盘输入稀疏矩阵的各元素。(行<=5,列<=5) 2)建立稀疏矩阵的十字链表。 3)分别按行、列输出链表中各元素的数据域。
file
- 文件输入输出,buffer流,及file-File input and output, buffer flow, and file
327518
- Java编程io实例,给出输入输出技术在java方面的具体例子,()
基于ATmaga8 的Pt100温度计设计
- 设计Pt100铂电阻测量温度的电路,温度测量范围是0-100摄氏度,要求LCD显示。画出电路图,标注元器件参数,简单说明测量原理和调节方式。根据要求,本设计的测温模拟电路使用热电阻Pt100温度传感器利用其感温效应,热电阻随环境温度的变化而变化,在电路图中将电阻值的变化转换成电压的变化,再将电压值作为输入信号输入至AD转换器中进行模拟信号到数字信号的转换,其输出端接单片机,向单片机内依据公式写入源程序,将被测温度在显示器上显示出来: 测量温度范围0℃~100℃; 分辨率为0.1℃; LCD
4个4位二进制数排序
- 给定4个输入:i1,i2,i3,i4,均为4位二进制无符号数。 你需要对它们进行排序并输出排序后的结果,即保证四个输出的关系为o1 >= o2 >= o3 >= o4。 例如:i1 = 1, i2 = 2, i3 = 4, i4 = 5,则:o1 = 5, o2 = 4, o3 = 2, o4 = 1。