2 つの数値を入力し、最初の数値を 2 番目の数値で割り、それが何回入ったかと余りを出力できるようにする必要があります。
剰余を出力することはできますが、その数が何で割られるかはどうすればわかりますか? 私のコードは次のとおりです
import java.util.Scanner;
public class TotalAndRemainder
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
System.out.println("Enter your first number");
int firstvalue = keyboard.nextInt();
System.out.println("Enter your second number");
int secondvalue = keyboard.nextInt();
int total = firstvalue / secondvalue;
int remainder = firstvalue % secondvalue;
System.out.println("The remainder is " + remainder);
}
}