हिंदी

A Metropolitan Hotel has 5 floors and 10 rooms in each floor. The names of the visitors are entered in a Double Dimensional Array (DDA) as M[S][lO]. The Hotel Manager wants to know from the "Enquiry" - Computer Applications

Advertisements
Advertisements

प्रश्न

A Metropolitan Hotel has 5 floors and 10 rooms in each floor. The names of the visitors are entered in a Double Dimensional Array (DDA) as M[S][10].
The Hotel Manager wants to know from the "Enquiry" about the position of a visitor (i.e. floor number and room number) as soon as he enters the name of the visitor. Write a program in Java to perform the above task. 

संक्षेप में उत्तर

उत्तर

import java.util.*;
class AQ17
{public static void main(String args[])
{Scanner ob = new Scanner(System.in);
inti;
String name = "";
String m[][] = new String[5][10];
System.out.println("Enter the names of the customers");
for (i = 0; i < 5; i++)
{for (j = 0; j < 10; j++)
m[i][j] = ob.nextLine();
}
System.out.println("***Enquiry for Floor, Room Number***");
System.out.println("Enter the name of the customer");
name = ob.nextLine();
for (i = 0; i < 5; i++)
{for (j = 0; j < 10; j++)
{if (m[i][j].equalsIgnoreCase(name))
System.out.println("Floor: " + (i + 1) + "\t" + "Room: " + (j + 1));
}
}}}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 3: Arrays (Single Dimensional and Double Dimensional) - EXERCISES [पृष्ठ २४३]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 3 Arrays (Single Dimensional and Double Dimensional)
EXERCISES | Q VII. 17. | पृष्ठ २४३
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×