MCPcopy Create free account
hub / github.com/Manvityagi/PW-Skills-Java-Course-Codes / Main

Class Main

Lecture 06_Conditionals/src/Main.java:1–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1public class Main {
2 public static void main(String[] args) {
3 int x = 60, y = 90;
4 if (y % x == 0)
5 System.out.println("Good");
6 else
7 System.out.println("Bad");
8 }
9}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected