Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

print different variable datatype

import java.io.*;   
public class PrintDemo  
{   
public static void main(String[] args)   
{   
//declaration of different datatypes   
int num = 122;   
char ch = 'A';   
String str = "Oracle";   
double d = 190.98;   
float f = 3.14f;   
//prints the values on the console  
System.out.println(); //prints nothing but throws the cursor to the next line  
System.out.println(num); //prints integer  
System.out.println(ch); //prints character   
System.out.print(str+"
");   
System.out.print(d +"
");   
System.out.print(f+"
");   
System.out.printf("'%s' %n", "javatpoint");  
System.out.printf("'%S' %n", "Jack");  
}   
}  
Source by www.javatpoint.com #
 
PREVIOUS NEXT
Tagged: #print #variable #datatype
ADD COMMENT
Topic
Name
4+9 =