Java

<Git> ErrorDebug.java

Once In A Lifetime 2023. 2. 2. 19:05
728x90
반응형

package ch01_variable_operator;

public class ErrorDebug {
    public static void main(String[] args) {
        int a,b,c ;
        a = 21 ;
        b = 7 ;
        c = a+b ;
        System.out.println("a+b = " +c);
        c = a-b ;
        System.out.println("a-b =" + c);
        c = a/b;
        System.out.println("a/b =" +c);

    }
}

 

cf) Myjava/ErrorDebug.java at master · nolooker/Myjava (github.com)

728x90
반응형