這只是三個(gè)數(shù),我都搞得云里霧里,這邏輯關(guān)系,我真的搞不太懂,好復(fù)雜,頭好疼。!
Tdiot6ttwh
展開
|
|
學(xué)習(xí)達(dá)人
|
cnkenly
展開
package com.unit1.test;
public class unit11_4 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int a=5;
int b=60;
int c=10;
if(a >=b) {
if(b>=c) {
System.out.println(a+"---"+b+"---"+c);
}
else if(a>=c) {
System.out.println(a+"---"+c+"---"+b);
}
else {
System.out.println(c+"---" |
打卡Lv4
|
天空2019
展開
|
打卡Lv2
|
天地一劍
展開
|
深藍(lán)地海
展開
if(a>=b) {
if(c>=a) {
System.out.println(c+"---"+a+"---"+b);
}else if(c<=b) {
System.out.println(a+"---"+b+"---"+c);
}else {
System.out.println(a+"---"+c+"---"+b);
}
}
else if(a<=b) {
if(c>=b) {
System.out.println(c+"---"+b+"---"+a);
}else if(c<=a) {
System.out.println(b+"---"+a+"---"+c);
}else {
Sy |
|
打卡Lv1
|
一九二點(diǎn)一六八點(diǎn)一點(diǎn)一
展開
|
承擔(dān)因您的行為而導(dǎo)致的法律責(zé)任,
本站有權(quán)保留或刪除有爭(zhēng)議評(píng)論。
參與本評(píng)論即表明您已經(jīng)閱讀并接受
上述條款。