[text] a2

Viewer

  1. import java.util.*;
  2. public class Main {
  3.         public static void main(String args[]) throws Exception{
  4.                 //write your code here
  5.                 Scanner sc=new Scanner(System.in );
  6.                 System.out.println("Enter the number of halls:");
  7.                 int n=sc.nextInt();
  8.                 sc.nextLine();
  9.                 List<String> list=new ArrayList<>();
  10.                 for(int i=0;i<n;i++){
  11.                         System.out.println("Enter the Hall Name "+(i+1));
  12.                         list.add(sc.nextLine());
  13.                 }
  14.                 System.out.println("Enter the hall name to be searched:");
  15.                 String s=sc.nextLine();
  16.                 if(list.contains(s)) System.out.println(s+"  hall is found in the list at position "+list.indexOf(s));
  17.                 else System.out.println(s+" hall is not found");
  18.  
  19.         }
  20. }
  21.  

Editor

You can edit this paste and save as new:


File Description
  • a2
  • Paste Code
  • 16 May-2024
  • 669 Bytes
You can Share it: