Computer Science, asked by sensanskriti06, 5 months ago

write the output statement in java ??


answer also in very long and also not in very short​

Answers

Answered by hemlatadeswal80
5

// Java code to illustrate print()

import java.io.*;

class Demo_print {

public static void main(String[] args)

{

// using print()

// all are printed in the

// same line

System.out.print("GfG! ");

System.out.print("GfG! ");

System.out.print("GfG! ");

}

}

Similar questions