desislava_topuzakova

Untitled

Oct 17th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class OldBooks_01 {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6. String searchedBook = scanner.nextLine();
  7. //1. ако открием книгата 2. ако получим команда "No book...."
  8.  
  9.  
  10. //команда -> no more books или заглавие на книга
  11. int countCheckedBooks = 0;
  12. while (true) {
  13. //команда -> заглавие
  14. String command = scanner.nextLine();
  15. if (command.equals("No More Books")) {
  16. System.out.println("The book you search is not here!");
  17. System.out.printf("You checked %d books.", countCheckedBooks);
  18. break;
  19. } else if (command.equals(searchedBook)) {
  20. //намираме книгата
  21. System.out.printf("You checked %d books and found it.", countCheckedBooks);
  22. break;
  23. } else {
  24. countCheckedBooks++;
  25. }
  26. }
  27.  
  28.  
  29. }
  30. }
Add Comment
Please, Sign In to add comment