Java用方法实现两个数比较大小
|
阅读数:--次|
作者:小豆豆
摘要:参数x和y,如果x大于y,返回x大于y的字符串
package com.webkfa.test;
/**
* web开发技术提供
* 网址:
* www.webkfa.com
*/
import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Test {
public static void main(String[] args) throws IOException, ParseException{
System.out.println(bjInt(1, 2));
System.out.println(bjInt(3, 1));
System.out.println(bjInt(3, 3));
}
public static String bjInt(int x,int y){
String str="";
if(x>y){
str="x大于y";
}else if(x==y){
str="x等于y";
}else{
str="y大于x";
}
return str;
}
}