Create a program for solving a problem: set a number, determine whether it is a multiple of 10.

Java programming language
package com.company;

import java.util.Scanner;
public class Main {
public static void main (String [] args) {
Scanner in = new Scanner (System.in);
int num = in.nextInt ();
boolean multTen = num% 10 == 0;
System.out.println (multTen);
}
}

 



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.