write a program to accept three digits and print the number
Answers
Answered by
14
Answer:
public class digit
{
public static void main ( int a, int b, int c)
{
System.out.println(" First digit"+a);
System.out.println(" Second digit"+b);
System.out.println("Third digit"+c);
}
}
above program is written using java language
hope it helped you ☺️
Similar questions