avatar
Lucas Miller
Tucson, Arizona, United States
For the last 10 years, I have been working as a Programming Tutor to students. Working with them I realized things are going online and therefore I started helping students online. I provide them with the best online Programming Exam Help. Hundreds of students have taken Programming Exam Help from me and have secured brilliant grades. Visit https://www.programmingexamhelp.com/
0

Codes

1

Answers

Code compilers

Top answers

0
java print number and text
July-02-2022
import java.util.Scanner;
public class Main
{
    public static void main(String args[])
    {
        int number;
        Scanner scan = new Scanner(System.in);
        System.out.print("Enter the number ");
        number = scan.nextInt();
        System.out.print("Entered number " +number);
            }
    }
    
    Output:

Enter the number 5
Entered number 5