Java의 절대값 함수 소개와 그 묘용
절대값 함수는 표현식의 절대값을 얻는 데 사용되는 JDK
Math.java
의 실현 방법이다.그 실현은 매우 간단하다. 원본 코드는 다음과 같다.
/**
* Returns the absolute value of an {@code int} value.
* If the argument is not negative, the argument is returned.
* If the argument is negative, the negation of the argument is returned.
*
* <p>Note that if the argument is equal to the value of
* {@link Integer#MIN_VALUE}, the most negative representable
* {@code int} value, the result is that same value, which is
* negative.
*
* @param a the argument whose absolute value is to be determined
* @return the absolute value of the argument.
*/
public static int abs(int a) {
return (a < 0) ? -a : a;
}
2. 절대치의 특성과 운용.1. 정수의 절대값은 그 자체이다.
2. 음수의 절대치는 그 반대수이다.
3, 0의 절대치는 그 자체이다.
절대값: 자감 함수와 절대값을 결합하여 먼저 순서를 낮추고 승급한다.
int number = 6;
System.out.println(" :");
while(number>=-6){
number --;
System.out.print(number+" ");
}
System.out.println("
:");
number = 6;
while(number>=-6){
number --;
System.out.print(Math.abs(number)+" ");
}
출력 결과:
:
5 4 3 2 1 0 -1 -2 -3 -4 -5 -6 -7
:
5 4 3 2 1 0 1 2 3 4 5 6 7
3. 사례1. 배경: 다음과 같은 패턴을 출력합니다.
A
B A B
C B A B C
D C B A B C D
E D C B A B C D E
F E D C B A B C D E F
G F E D C B A B C D E F G
2. 분석:1. A 중심점
2, 각 행, 내림차순 및 오름차순
3. 알파벳은 정수로 환산할 수 있다.'A'= 65.그러면 각 행의 첫 번째 출력 문자는'A'+ 행수입니다.
4. 줄마다 좌우 대칭, 줄마다 알파벳 수 = 줄 수 *2 +1(알파벳 A);
3. 실현
1. 실현 분석 중의 1~3단계."A"를 중심으로 순서를 내리고 각 행의 패턴을 오름차순으로 출력합니다.
//
print(5);
/**
* ,
* @param row
*/
private static void print(int row){
for(int i=0;i<2*row+1;i++){
int printChar = 'A' + Math.abs(row-i);
System.out.print(((char)printChar)+" ");
}
}
출력은 다음과 같습니다.
F E D C B A B C D E F
2단계 4에서 행당 알파벳 수 = 행 수 * 2 +1 (알파벳 A), 그러면각 줄에 표시해야 할 알파벳을 제외한 부분은 공백을 인쇄합니다.논리적 제어는 다음과 같습니다.
for(int j=0;j<2*row+1;j++){
// 。 、
int printChar = 'A' + Math.abs(row-j);
// [ ] [ ], :
if(printChar>firstChar){
//
System.out.print(" ");
}else{
//
System.out.print(((char)printChar)+" ");
}
}
3. 전체 코드:
//
printWithRow(7);
/**
*
*
* @param row
*/
private static void printWithRow(int row){
for(int i=0;i<row;i++){
// 。
int firstChar = 'A' + i;
for(int j=0;j<2*row+1;j++){
// 。 、
int printChar = 'A' + Math.abs(row-j);
// [ ] [ ], :
if(printChar>firstChar){
//
System.out.print(" ");
}else{
//
System.out.print(((char)printChar)+" ");
}
}
//
System.out.println();
}
}
총결산이상은 바로 이 글의 전체 내용입니다. 본고의 내용이 여러분의 학습이나 업무에 어느 정도 도움이 되고 의문이 있으면 댓글로 교류하시기 바랍니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
38. Java의 Leetcode 솔루션텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.