1. java 字符之间怎么比大小
//没看清楚是比较字符了...
字符比较可以直接.
char a='a';
char b='b';
if(a<b) //java会自动给他们判断UNICAL码值
System.out.println(a+"<"+b);
//重点 a.compareTo(b)) 要比较的2个字符串
public class wq {
public static void main(String agrs[])
{
String a="aaq";
String b="awq";
System.out.println(a.compareTo(b)); //判断 b和a的大小.. 大多少 或者 小多少 相等返回0
}
}
2. 在java中怎么比较三个整数大小例如(a , b, c);并从小到大输出
public static void main(String args[]) {
Integer a = 2, b = 1, c = 3;
int max, min, middle = 0;
if (a > b) {
max = a;
min = b;
if (max < c) {
middle = a;
max = c;
}
if (min > c) {
middle = b;
min = c;
}
} else {
max = b;
min = a;
middle = c;
if (max < c) {
middle = b;
max = c;
}
if (min > c) {
middle = a;
min = c;
}
}
System.out.println(max + "---" + middle + "====" + min);
}
执行结果:
3. 在java中怎么比较三个整数大小例如(a,b,c
public class Sort {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请依次输入3个数版字权");
int a = scanner.nextInt();
int b = scanner.nextInt();
int c = scanner.nextInt();
if( b > a){
int t = 0;
t = a;
a = b;
b = t;
}
if( c > a){
int t =0;
t = a;
a = c;
c = t;
}
if( c > b){
int t = 0;
t = c;
c = b;
b = t;
}
System.out.println("a = "+ a + " b= " + b + " c= " + c );
}
}
4. 如何用Java比较两个整数的大小
publicclassHello{
publicstaticvoidmain(String[]args){
容System.out.println(getMax(2,10));
}
publicstaticintgetMax(inta,intb){
returna>b?a:b;
}
}
5. Java中有没有直接比较两个整数大小的方法
楼主的意思是比较那种类型的整数?int和long甚至integer都可以用普通的比较符号“<”
,">"," !=" ,"=="来进行比较。
6. 在java中int[] a 怎么和100比较大小
你是说要把a数组里面的元素一个个的喝100比较吗?
System.out.println("打印专数组中所有比100大的属数");
for(int i=0;i<a.length;a++)
{
if(int[i]>100)
{
System.out.println(a[i]);
}
}
7. java biginteger怎么比较大小
compareTo方法来比较,小于则返回-1,等于则返回0,大于则返回1
BigIntegera1=newBigInteger("1");
BigIntegera2=newBigInteger("2");
a1.compareTo(a2);
下面的例子显示math.BigInteger.compareTo()方法的用法
package com.yii;import java.math.*;public class BigIntegerDemo {public static void main(String[] args) {
// create 2 BigInteger objects
BigInteger bi1, bi2;
bi1 = new BigInteger("6");
bi2 = new BigInteger("3");
// create int object
int res;
// compare bi1 with bi2
res = bi1.compareTo(bi2);
String str1 = "Both values are equal ";
String str2 = "First Value is greater ";
String str3 = "Second value is greater";
if( res == 0 )
System.out.println( str1 );
else if( res == 1 )
System.out.println( str2 );
else if( res == -1 )
System.out.println( str3 );
}}
让我们编译和运行上面的程序,这将产生以下结果:
First Value is greater
8. JAVA 整形变量之间的比较问题
你对==的理解有错误,如果是引用变量,当然比较的是引用变量的值,而引用变量的值就是对象的地址,所以当2个引用变量指向同一个对象时,返回true;而如果是数值型,同样,只要他们的值相等就返回true。所以不用改
9. JAVA比较数值的大小
publicstaticvoidmain(String[]args){
Scannerinput=newScanner(System.in);
intnum;
intmax=0;
intmin=0;
while(true){
System.out.println("请输入一个整数“输入0时结束”:");
num=input.nextInt();
if(num==0){
break;
}
if(num>max){
max=num;
}
if(num<min){
min=num;
}
}
System.out.print("最大值为:"+max+"最小值为:"+min);
}
10. 用java编程 输入两个整数并比较它们的大小
算法给你吧 public double compare(double x,double y)//该函数返回较大的数
{ if (x>y) return x; else return y; }