Java,java官网
Java,java官网
Java
<span>int</span> [] array1 = {1,3,5,7,9,10,2,15,154,10,2,188,200};<span>//</span><span>定义一个数组,内容为混乱大小</span> <span>int</span> index = 0;<span>//</span><span>定义一个最大值或最小值的位置</span> <span>int</span> keyValue = 0;<span>//</span><span>定义最大值或最小值</span> <span>int</span> temp = 0;<span>//</span><span>定义一个临时存储变量</span> <span>for</span>(<span>int</span> i=0;i<array1.length;i++){<span>//</span><span>依次循环所有数据</span> index = i;<span>//</span><span>将i位置赋值给index</span> keyValue = array1[index];<span>//</span><span>将i位置的值赋值给keyValue</span> <span>for</span>(<span>int</span> y=i;y<array1.length;y++){<span>//</span><span>再次循环所有变量,不过这次是长度起始长度为i,最大长度不变</span> <span>if</span>(array1[y] < keyValue){<span>//</span><span>如果循环到的值小于i位置的值</span> index = y;<span>//</span><span>位置重新定义为当前位置</span> keyValue = array1[y];<span>//</span><span>最小值为当前位置</span> <span> } } temp </span>= array1[i];<span>//</span><span>将i位置的值赋值给临时变量(最大值)</span> array1[i] = array1[index];<span>//</span><span>将i位置重新定义为index(最小)位置的</span> array1[index] = temp;<span>//</span><span>将最大值重新定义给index位置,实现交换过程</span> <span> } </span><span>for</span>(<span>int</span> p=0;p<array1.length;p++<span>){ System.out.print(array1[p]</span>+" "<span>); }</span>
<?<span>php </span><span>/*</span><span> 选择排序::对数组进行从小到大的排序 </span><span>*/</span> <span>$array</span> = <span>array</span>(2, 100, 3, 50, 48, 99, 502, 30, 27, 15, 16, 300, 11, 9, 5, 4, 42<span>); </span><span>for</span> (<span>$i</span> = 0; <span>$i</span> < <span>count</span>(<span>$array</span>); <span>$i</span>++<span>) { </span><span>$index</span> = <span>$i</span>; <span>//</span><span>将index设置为当前循环步长</span> <span>$keyValue</span> = <span>$array</span>[<span>$index</span>]; <span>//</span><span>将最小值设置为当前</span> <span>for</span> (<span>$y</span> = <span>$i</span>; <span>$y</span> < <span>count</span>(<span>$array</span>); <span>$y</span>++<span>) { </span><span>if</span>(<span>$array</span>[<span>$y</span>] < <span>$keyValue</span>){ <span>//</span><span>如果循环余下的数据,有比i更小的值</span> <span>$index</span> = <span>$y</span>; <span>//</span><span>记录最小值的索引位置</span> <span>$keyValue</span> = <span>$array</span>[<span>$index</span>];<span>//</span><span>将最小值设置为最小值索引位置的值</span> <span> } } </span><span>$temp</span> = <span>$array</span>[<span>$i</span>]; <span>//</span><span>将当前循环的值赋值给临时变量(最大值)</span> <span>$array</span>[<span>$i</span>] = <span>$array</span>[<span>$index</span>];<span>//</span><span>将最小值赋值给当前位置</span> <span>$array</span>[<span>$index</span>] = <span>$temp</span>;<span>//</span><span>将最小值的位置填充上最大值</span> <span>} </span><span>print_r</span>(<span>$array</span><span>); </span>?>
Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由Sun Microsystems公司于1995年5月推出的Java程序设计语言和Java平台(即JavaSE, JavaEE, JavaME)的总称。Java 技术具有卓越的通用性、高效性、平台移植性和安全性,广泛应用于个人PC、数据中心、游戏控制台、科学超级计算机、移动电话和互联网,同时拥有全球最大的开发者专业社群。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

This article answers the questions about the official website entrance of "Sesame Open Door" and the Gate.io exchange entrance address. First of all, it is clear that "Sesame Open Door" is not a known formal trading platform, it may be an error message or an alias. As a well-known digital asset trading platform, Gate.io needs to be carefully searched to avoid phishing websites.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allo
