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) {
        int i1 = 5;
        int i2 = 14;

        char ch1 = Character.forDigit(i1, 10);
        char ch2 = Character.forDigit(i2, 16);

        String str1 = "Char representation of " + i1 + " in radix 10 is " + ch1;
        String str2 = "Char representation of " + i2 + " in radix 16 is " + ch2;

        System.out.println(str1);
        System.out.println(str2);
    }
}