Write Console

public class Main{
    public static void main(String args[]){
        int b;
        b = 'A';
        char c = 'A';
        System.out.write(b);
        System.out.println();
        System.out.write(c);
        System.out.write('\n');
    }
}

No comments:

Post a Comment