Posts

Showing posts from March, 2025

Multiplexo-Gameo

 import java.util.*; public class Java_0 {     public static void main(String args[])     {         Scanner sc=new Scanner(System.in);         //creating Scanner Class         System.out.println("Enter your name");         String name=sc.nextLine();         //Accepts name from the user         System.out.println(name+" welcome to multiplexo-gameo");         System.out.println(name+" Hi! This is Gameo who will be assisting you throughout the program");         System.out.println("Please enter your birthday date");         int birthdaydate=sc.nextInt();//30         //Accepts birthday date of the user from the user         System.out.println("Please enter your birthday month");         int birthdaymonth=sc.nextInt();//01   ...