name the function of the scanner that is used to accept a number of long data type and accept a group of alphabets
Answers
Answered by
5
Answer:
Java...
Explanation:
public static void main(String[] args){
double b = 123.43555;
char c = 'e';
boolean d = true;
System.out.println("Double :" + b);
System.out.println("Character :" + c);
System.out.println("Boolean :" + d);
}
}
Similar questions