Computer Science, asked by kiranyadav8582, 11 months ago

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 shajahanaansari
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