⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fqmath.java

📁 基于JAVA实现的图像特征提取源代码 图像特征提取的源代码
💻 JAVA
字号:
package fq;

public class FqMath {
	public static int max( int a , int b ){
		return	a > b ? a : b;
	}
	
	public static int max( int a , int b , int c ){
		int temp	=	max( a , b );
		return	temp > c ? temp : c;
	}
	
	public static double max( double a , double b ){
		return	a > b ? a : b;
	}
	
	public static int min( int a , int b ){
		return	a < b ? a : b;
	}
	
	public static int min( int a , int b , int c ){
		int temp	=	min( a , b );
		return	temp < c ? temp : c;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -