输3个整数,分别赋值给int变量a,b,c,再将输入的整数从小到大的放在变量a,b,c中,并输出三个变量的值
输入3个整数,分别赋值给int变量a,b,c,再将输入的整数从小到大的放在变量a,b,c中,并输出三个变量的值我刚学java,用的eclipse。。。。前面还好说,就是将...
输入3个整数,分别赋值给int变量a,b,c,再将输入的整数从小到大的放在变量a,b,c中,并输出三个变量的值
我刚学java,用的eclipse。。。。前面还好说,就是将输入的数字从小到大放在变量并输出是在是写不出来了。。。。。用什么语句写?boolean?if?帮帮忙吧。。。 展开
我刚学java,用的eclipse。。。。前面还好说,就是将输入的数字从小到大放在变量并输出是在是写不出来了。。。。。用什么语句写?boolean?if?帮帮忙吧。。。 展开
展开全部
import java.util.Scanner;
public class TestForQ {
public static void main(String[] args){
int a = 0;
int b = 0;
int c = 0;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
if (a > b) {
int temp = a;
a = b;
b = temp;
}
if (a > c) {
int temp = a;
a = c;
c = temp;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
}
System.out.println("a=" + a);
System.out.println("b=" + b);
System.out.println("c=" + c);
}
}
public class TestForQ {
public static void main(String[] args){
int a = 0;
int b = 0;
int c = 0;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
if (a > b) {
int temp = a;
a = b;
b = temp;
}
if (a > c) {
int temp = a;
a = c;
c = temp;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
}
System.out.println("a=" + a);
System.out.println("b=" + b);
System.out.println("c=" + c);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
楼主是三个数的比较吗?
import java.util.Scanner;
public class Demo7 {
public static void main(String[] args) {
int a = 0, b = 0, c = 0;
int[] arr=new int[3];
Scanner s = new Scanner(System.in);
for (int i = 0; i < 3; i++) {
arr[i]=s.nextInt();
}
a=arr[0];
b=arr[1];
c=arr[2];
int max=a;
if(a<b)
max=b;
if(max<c)
max=c;
System.out.println(a+""+b+""+c);
System.out.println(max);
}
}
import java.util.Scanner;
public class Demo7 {
public static void main(String[] args) {
int a = 0, b = 0, c = 0;
int[] arr=new int[3];
Scanner s = new Scanner(System.in);
for (int i = 0; i < 3; i++) {
arr[i]=s.nextInt();
}
a=arr[0];
b=arr[1];
c=arr[2];
int max=a;
if(a<b)
max=b;
if(max<c)
max=c;
System.out.println(a+""+b+""+c);
System.out.println(max);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询