九九を生成するJavaプログラム
この記事では、掛け算の九九を印刷する方法を理解します。掛け算の九九は、forループを使用して必要な入力を10回繰り返し、各繰り返しで入力値に1から10までの数値を掛けることによって作成されます。
以下は同じのデモンストレーションです-
入力
入力が-
であると仮定しますInput : 16
出力
必要な出力は-
になりますThe multiplication table of 16 is : 16 * 1 = 16 16 * 2 = 32 16 * 3 = 48 16 * 4 = 64 16 * 5 = 80 16 * 6 = 96 16 * 7 = 112 16 * 8 = 128 16 * 9 = 144 16 * 10 = 160
アルゴリズム
Step 1 – START Step 2 – Declare two integer values namely my_input and i. Step 3 - Read the required values from the user/ define the values Step 4 – Iterate from 1 to 10 using a for-loop, and in each iteration, multiply the numbers 1 to 10 with the input. Step 5- Display the resulting value in after each iteration. Step 6- Stop
例1
ここでは、プロンプトに基づいてユーザーが入力を入力しています。この例は、コーディンググラウンドツールでライブで試すことができます 。
import java.util.Scanner; public class MultiplicationTable { public static void main(String[] args) { int my_input, i; my_input = 16; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A reader object has been defined "); System.out.print("Enter a number : "); my_input = my_scanner.nextInt(); System.out.println("The multiplication table of " +my_input + " is :"); for(i = 1; i <= 10; ++i){ System.out.printf("%d * %d = %d \n", my_input, i, my_input * i); } } }
出力
Required packages have been imported A reader object has been defined Enter a number : 16 The multiplication table of 16 is : 16 * 1 = 16 16 * 2 = 32 16 * 3 = 48 16 * 4 = 64 16 * 5 = 80 16 * 6 = 96 16 * 7 = 112 16 * 8 = 128 16 * 9 = 144 16 * 10 = 160
例2
ここでは、整数は事前に定義されており、その値にアクセスしてコンソールに表示されます。
public class MultiplicationTable { public static void main(String[] args) { int my_input, i; my_input = 16; System.out.println("The number is defined as " +my_input); System.out.println("The multiplication table of " +my_input + " is :"); for(i = 1; i <= 10; ++i){ System.out.printf("%d * %d = %d \n", my_input, i, my_input * i); } } }
出力
The number is defined as 16 The multiplication table of 16 is : 16 * 1 = 16 16 * 2 = 32 16 * 3 = 48 16 * 4 = 64 16 * 5 = 80 16 * 6 = 96 16 * 7 = 112 16 * 8 = 128 16 * 9 = 144 16 * 10 = 160
-
正方形の領域を見つけるJavaプログラム
この記事では、正方形の面積を見つける方法を理解します。正方形の面積は、次の式を使用して計算されます- side*side i.e. s2 以下は同じのデモンストレーションです- 正方形の辺がsの場合、正方形の面積はs 2で与えられます。 − 入力 入力が-であると仮定します Length of the side : 4 出力 必要な出力は-になります Area of the square : 16 アルゴリズム Step 1 - START Step 2 - Declare 2 integer values namely my_side and my_area. S
-
JavaでUnsupportedOperationExceptionを生成する方法は?
UnsupportedOperationException RuntimExceptionのサブクラスです Javaの場合、要求された操作がサポートされていないことを示すためにスローできます。 UnsupportedOperationException クラスはJavaコレクションフレームワークのメンバーです。この例外は、リスト、キュー、セットなどのほとんどすべての具象コレクションによってスローされます。 およびマップ 。 構文 public class UnsupportedOperationException extends RuntimeException 例 import ja