variables

This commit is contained in:
2024-09-12 16:28:05 +02:00
parent 56564eaa91
commit ee64412d37
2 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,13 @@ package com.example;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
System.out.println("Write once, run anywhere");
System.out.println("Write once, run anywhere!");
int a = 5;
int b = 3;
int z = a%b;
System.out.println(a-z);
}
}