-
-
Save Khuzha/f30c3c2947ba49c8d8266a4d13b64ab1 to your computer and use it in GitHub Desktop.
for Albina
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.khuzha.objects; | |
public class Main { | |
public static void main(String[] args) { | |
int k = 2, l = 2, m = 4, n = 6; | |
if (l % k == 0 && m % k == 0 && n % k == 0) { | |
System.out.println("Все эти числа можно разделить на число k без остатка."); | |
} else { | |
System.out.println("Одно из этих чисел делится на число k с остатком"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment