Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {
    public static void main(String[] args) {
        byte b1 = 1;
        byte b2 = -2;
        System.out.printf("%o\n", b1);
        System.out.printf("%o", b2);
    }
}