숫자 자체를 곱하면 결과로 나타나는 숫자는 숫자의 제곱입니다. 숫자의 제곱은 찾기가 매우 쉽습니다. 일반적으로 정수의 제곱근을 찾을 때마다 정수로만 결과를 얻습니다. 마찬가지로, 십진수의 제곱을 찾을 때마다 답도 십진수로 얻습니다. 숫자의 제곱에 대한 흥미로운 사실은 정수의 제곱을 할 때마다 결과 숫자의 값이 증가한다는 것입니다. 그러나 0과 1 사이의 소수점 이하 자릿수를 제곱하면 결과 숫자가 감소합니다. 예를 들어 0.5의 제곱이 있습니다. 0.5를 제곱하면 숫자는 0.25로 감소합니다. 이 글에서는 Java 프로그래밍 언어를 사용하여 숫자를 제곱하는 다양한 방법을 살펴보겠습니다.
작업 중 – 숫자의 제곱은 Java에서 다양한 기술을 통해 찾을 수 있습니다. 숫자의 제곱을 더 잘 이해할 수 있도록 숫자의 제곱과 관련된 몇 가지 예를 보고 싶습니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
자바에서 제곱을 계산하는 방법을 알아봅시다.
숫자의 제곱을 구하는 가장 간단한 방법은 Math.pow()로, 숫자의 거듭제곱을 계산하는 데 사용할 수 있습니다.
코드:
import java.util.*; public class Square { public static void main(String args[]) { Scanner sc=new Scanner(System.in); int num; System.out.print("Enter a number which is integer format: "); num=sc.nextInt(); System.out.println("The square of "+ num + " is: "+ Math.pow(num, 2)); } }
출력:
다음 프로그램에서는 두 숫자를 순차적으로 곱하여 해당 숫자의 제곱을 구하는 일반적인 형식으로 숫자의 제곱을 계산해 보겠습니다.
코드:
import java.util.*; public class Square2 { public static void main(String args[]) { Scanner sc=new Scanner(System.in); int no; System.out.print("Enter a number which is integer format: "); no=sc.nextInt(); System.out.println("Square of "+ no + " is: "+(no*no));//the number is multiplied with its own } }
출력:
이 예에서는 숫자가 완전제곱수인지 아닌지 확인하겠습니다. 숫자가 다른 숫자의 제곱인지 확인하는 조금 복잡한 프로그램입니다.
코드:
import java.util.Scanner; class JavaExample { static boolean checkPerfectSquare(double x) { // finding the square root of given number double s= Math.sqrt(x); return ((s - Math.floor(s)) == 0); //Math.floor() is used here to calculate the lower value. } public static void main(String[] args) { System.out.print("Enter any number:"); Scanner scanner = new Scanner(System.in); double no= scanner.nextDouble(); scanner.close(); if (checkPerfectSquare(no)) System.out.print(no+ " is a perfect square number"); else System.out.print(no+ " is not a perfect square number"); } }
출력:
이 프로그램에서는 특정 범위 내에서 제곱수의 개수를 구합니다. 숫자 범위를 입력하면 코드는 해당 특정 범위의 제곱수를 생성합니다. 아래 프로그램에서는 0에서 100 사이의 제곱 정수의 개수를 찾습니다.
코드:
// Finding the range of perfect square numbers in Java programming language import java.io.IOException; public class SquareNumbersInRange { public static void main(String[] args) throws IOException { int starting_number = 1; int ending_number = 100; System.out.println("Perfect Numbers between "+starting_number+ " and "+ending_number); for (int i = starting_number; i <= ending_number; i++) { int number = i; int sqrt = (int) Math.sqrt(number); if (sqrt * sqrt == number) { System.out.println(number+ " = "+sqrt+"*"+sqrt); } } } }
출력:
이 프로그램에서는 처음 N개의 자연수의 제곱합을 살펴보겠습니다. N의 값을 입력하면 프로그램은 처음 N개의 자연수의 제곱합을 계산합니다.
코드:
// Java Program to find sum of // square of first n natural numbers import java.io.*; class SumofSquares { // Return the sum of the square of first n natural numbers static int square sum(int n) { // Move the loop of I from 1 to n // Finding square and then adding it to 1 int sum = 0; for (int i = 1; i <= n; i++) sum += (i * i); return sum; } // Main() used to print the value of sum of squares public static void main(String args[]) throws IOException { int n = 6; System.out.println("The sum of squares where N value is 6 is "+ squaresum(n)); } }
출력:
위 내용은 자바의 사각형의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!