University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

w0.md 578B

Seminaroppgaver til uke 0

Oppgave 1

System.out.print printer kun ut teksten en skriver, System.out.println legger til en newline.

Oppgave 2

b og e er gyldige; javac kompilerer alt som har extension .java, og den kompilerte filen vil få navnet Student.class uansett.

Oppgave 3

PrintAlder printer:

Din alder er 30

Summere heltall:

class SumHeltall {
    public static void main(String[] args) {
        int a = 4;
        int b = 5;

        System.out.println(a + b);
    }
}

Oppgave 4

39 + 3
42

Oppgave 5

Tall 1: 5 og tall 2: 3456 blir til sammen 3461