Saturday, October 25, 2025
HomeLanguagesJavaJava Program to Print a Semicolon Without Using Semicolon

Java Program to Print a Semicolon Without Using Semicolon

The given task is to print a ‘;‘ without using ‘;‘ anywhere in the code. The simplest idea one can think of to approach this interesting question is using ASCII value somehow in the program. But as Java does not support macros, unlike C/C++, therefore to eliminate ‘;’ at the end of every line in code is to use, if-statement or while loop with printf(String, Object) method of PrintStream in the condition statement. The main logic here is as printf() returns PrintStream object which is not null so on comparison it with null (literal in Java) we will get our desired output.

Method 1: Using if statement

Java




// Java program to print ; without using ;
// using if statement
 
class PrintSemicolonExample {
    public static void main(String[] args)
    {
        // The ASCII value for semicolon is 59
        if (System.out.printf("%C", 59) == null) {
        }
    }
}


Output

;

Method 2: Using while loop

Java




// Java program to print ; without using ;
// using while loop
 
class PrintSemicolonExample {
    public static void main(String[] args)
    {
        while ((System.out.printf("%C", 59) == null)) {
        }
    }
}


Output

;

Time complexity: O(1)
Auxiliary space: O(1)

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS