Ekta
0
Q:

print java

//print and create new line after
System.out.println("text");
System.out.println(String);
//You can use any variable type, not just strings, although
//they are the most common

//Print without creating a new line
System.out.print("text");
System.out.print(String);
13
System.out.println("whatever you want");
//you can type sysout and then cntrl + space 
5
System.out.println("Hello, World!");
/*type System the class, the .out the field, and the println short 
for print line */
11
System.out.println("Your text here.");
3
System.out.println("Hello World!");
1
import java.io.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // The cursor will remain 
        // just after the 1 
        System.out.print("GfG1"); 
  
        // This will be printed 
        // just after the GfG2 
        System.out.print("GfG2"); 
    } 
} 
1
// A Java program to demonstrate working of printf() in Java 
class JavaFormatter1 
{ 
  public static void main(String args[]) 
  { 
    int x = 100; 
    System.out.printf("Printing simple integer: x = %d\n", x); 
  
    // this will print it upto 2 decimal places 
    System.out.printf("Formatted with precison: PI = %.2f\n", Math.PI); 
  
    float n = 5.2f; 
  
    // automatically appends zero to the rightmost part of decimal 
    System.out.printf("Formatted to specific width: n = %.4f\n", n); 
  
    n = 2324435.3f; 
  
    // here number is formatted from right margin and occupies a 
    // width of 20 characters 
    System.out.printf("Formatted to right margin: n = %20.4f\n", n); 
  } 
} 
3
System.out.println(String someString); /** Can take in other types as well such as integers (ints) */
1

New to Communities?

Join the community