Thursday, October 7, 2021

Student Form Entry in Java

 A simple program that demonstrate the use of scanner, strings, and integers in Java programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.




Program Listing

 

import java.util.Scanner;


public class StudentInfo {

    

    public static void main (String [] args)

    {

        /*variables declaration */

        String name;

        String course;

        String gender;

        long studNum;

        int age=0;

        

        Scanner i = new Scanner (System.in);

        

        /*Form*/

        System.out.println("\tSTUDENT FORM ENTRY IN JAVA ");

        System.out.println("Enter Your Name: ");

        name= i.nextLine();

        System.out.println("Enter Your Course: ");

        course= i.nextLine();

        System.out.println("Enter Your Gender: ");

        gender= i.nextLine();

        System.out.println("Enter Your Student Number: ");

        studNum= i.nextInt();

        System.out.println("Enter Your Age: ");

        age= i.nextInt();

        

        /*Output*/

        System.out.println("Your name is: " +name);

        System.out.println("Your course is: " +course);

        System.out.println("Your gender is: " +gender);

        System.out.println("Your student number is: " +studNum);

        System.out.println("Your age is: " +age);

        

    }

}


    

No comments:

Post a Comment