search
HomeJavajavaTutorialShare a few typical examples of Java programming
Share a few typical examples of Java programmingJun 25, 2017 am 10:10 AM
javaexampleseveralprogramming

1. Simulate the hotel room management system, you need to follow the following functions:

1, 1 in room number guest name, check -in function

1, 2 OUT room number check -out function

1, 3 Search Room Number to query the room status. If the room number is -1, all the room status is output

1, 4 quit or exit Exit

Tip: Two-dimensional array to implement

The code is implemented as follows:

import java.util.Scanner;

public class HotelDemo {
    //写在类里面,则每个方法都可以访问到,避免了参数传递的繁琐;
    static int h=5,w=10;
    static String[][] rooms=new String[5][10];
    public static void main(String[] args) {
        @SuppressWarnings("resource")
        Scanner s=new Scanner(System.in);
         while(true){
             System.out.println("请输入  in,out,search,quit:");
             String temp=s.next();
             int room=0;
             if("in".equals(temp)){//防止出现空指针异常;
                 System.out.println("输入房间号:");
                 room=s.nextInt();
                 System.out.println("输入名字:");
                 String name=s.next();
                 if(in(room,name)) System.out.println("入住完成!");
                 System.out.println("room"+room+"name"+name);
             }else if("out".equals(temp)){
                 System.out.println("输入房间号:");
                 room=s.nextInt();
                 if(out(room)) System.out.println("退房完成!");
                 System.out.println("out"+room);
             }else if("search".equals(temp)){
                 System.out.println("输入房间号(-1代表全部):");
                 room=s.nextInt();
                 search(room);
             }else if("quit".equals(temp)||"exit".equals(temp)){
                 break;
             }else{
                 System.out.println("命令错误!");
             }
         }
     }

     private static boolean search(int room) {
         if(room==-1){
             //打印所有的信息;
             for(int i=0;i<h;i++){
                 for(int j=0;j<w;j++){
                     int room2=(i+1)*100+j+1;
                     System.out.print(room2+"\t");
                 }
                 System.out.println();
                 for(int k=0;k<w;k++){
                     System.out.print(rooms[i][k]==null?"empty":rooms[i][k]);
                     System.out.print("\t");
                 }
                 System.out.println();
                 System.out.println();
             }
             return true;

         }else{
             int r=room/100-1;
             int c=room%100-1;
             if(r<0||r>=h||c<0||c>=w){
                 System.out.println("房间号错误!");
                 return false;
             }
             System.out.println(rooms[r][c]==null?"empty":rooms[r][c]);
             return true;
         }
     }

     private static boolean out(int room) {
         int r=room/100-1;
         int c=room%100-1;
         if(r<0||r>=h||c<0||c>=w){
             System.out.println("房间号错误!");
             return false;
         }
         if(rooms[r][c]==null||"".equals(rooms[r][c])){//
             System.out.println("此房间没有人!");
             return false;
         }
         rooms[r][c]=null;
         return true;
     }

     private static boolean in(int room, String name) {
         int r=room/100-1;
         int c=room%100-1;
         if(r<0||r>=h||c<0||c>=w){
             System.out.println("房间号错误!");
             return false;
         }
         if(rooms[r][c]!=null){//
             System.out.println("此房间已经有人!");
             return false;
         }

         rooms[r][c]=name;
         return true;

     }

 }

2. Spiral matrix Example

import java.util.Scanner;
 
public class SpiralSquare01{
 
    public static void main(String[] args) {
        @SuppressWarnings("resource")
        Scanner s=new Scanner(System.in);
        System.out.println("请输入螺旋方阵的长");
        int indexY=s.nextInt();
        System.out.println("请输入螺旋方阵的宽");
        int indexX=s.nextInt();
        if(indexX<=0||indexY<=0){
            System.out.println("输入的数字不合法!");
            return;
        }
        int[][] square=new int[indexX][indexY];
        int x=0;
        int y=0;
        for(int i=1;i<=indexX*indexY;){
            while(y<square[x].length-1&&square[x][y+1]==0){
                square[x][y++]=i++;
            }
            while(x<square.length&&square[x][y]==0){
                square[x++][y]=i++;
            }
            while(y>0&&square[x-1][y-1]==0){
                square[x-1][--y]=i++;
            }
            --x;
            while(x>1&&square[x-1][y]==0){
                square[--x][y]=i++;
            }
            y++;
        }
        for(int i=0;i<square.length;i++){
            for(int j=0;j<square[i].length;j++){
                System.out.print(square[i][j]+"\t");
            }
            System.out.println();
        }
    }
}

Running result:

3. Classic mathematics problem: a variation of the Hundred Chicken Problem

Problem description: There are 36 people and 36 bricks. Each person moved it once and just finished moving it. Among them, men each move 4 pieces each time, women each move 3 pieces each time, and two children move one piece each time. Ask: How many men, women and children are there?

public class TestBrick {
    public static void main(String[] args) {
        int manNum=0;
        int womanNum=0;
        for(int i=0;i<=9;i++){
            for(int j=0;j<12;j++){      
                if(((i*4+j*3+(36-i-j)/2)==36)&&((36-i-j)%2==0)){
                    //注意:孩子的人数必须是偶数,否则会出现一个孩子一次也没有搬的情况,不符合题意
                    manNum=i;
                    womanNum=j;
                    System.out.println("男的的人数是"+manNum);
                    System.out.println("女的的人数是"+womanNum);
                    System.out.println("孩子的人数是"+(36-manNum-womanNum));
                }
            }
        }  
    }
 
}

4. Countdown algorithm: Enter a number of seconds and convert it to the format of XX hours, XX minutes and XX seconds and output it

import java.util.Scanner;
 
public class TestTime {
 
    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        @SuppressWarnings("resource")
        Scanner s=new Scanner(System.in);
        System.out.println("请输入秒数:");
        int second =s.nextInt();
        int hour=second/3600;
        int minite=second%3600/60;
        int sec=second%60;
 
        System.out.println("转换后为:"+hour+"小时"+minite+"分"+sec+"秒");
         
    }
 
}

5. Automatic password generator: The password consists of uppercase letters/lowercase letters/numbers, and generates a six-digit random password;

//密码的自动生成器:密码由大写字母/小写字母/数字组成,生成六位随机密码;
import java.util.Random;
 
public class TestPassword {
 
    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
               char[] pardStore=new char[62];
                 //把所有的大写字母放进去
                   for(int i=0;i<20;i++){
                       pardStore[i]=(char)(&#39;A&#39;+i);
                   }
                 //把所有的小写字母放进去
                   for(int i=26;i<52;i++){
                       pardStore[i]=(char)(&#39;a&#39;+i);
                   }
                    
                   //吧0到9放进去
                   for(int i=52;i<62;i++){
                       pardStore[i]=(char)(&#39;0&#39;+(i-52));
                   }
                    
                   //生成6位随机密码
                   Random r=new Random();
                   for(int i=0;i<6;i++){
                       int n=r.nextInt(62);
                       System.out.print(pardStore[n]);
                   }
               }
    }

#6. Write a lottery generation code: 1-33 Randomly select 7 non-repeating numbers;

import java.util.Random;

//写一个彩票的生成代码: 1-33随机选7个不重复的数字;
public class TestLuckyTicket {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
         int[] luckTickets=new int[7];
         
         Random r=new Random();
         for(int i=0;i<luckTickets.length;i++){
             luckTickets[i]=r.nextInt(8)+1;
             for(int j=0;j<i;j++){
                 if(luckTickets[i]==luckTickets[j]){
                     i--;
                     break;
                 }
             }
         }
         for(int i=0;i<luckTickets.length;i++){
             System.out.print(luckTickets[i]+",");
         }
    }

}

7. Define a string variable String str="There is bright moonlight in front of the bed, suspected to be frost on the ground. Look up at the moon, bow your head and miss your hometown.". Print it in the following format:

low raise doubts bed

头头头是前

思愿地明

therefore 明上月

Township Moon Frost Light

. , . ,

public class TestPoet {
 
    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
            String str="床前明月光,疑是地上霜。举头望明月,低头思故乡。";
            char[] poet=str.toCharArray();
            int l=18;
            boolean flag=true;
            int i=0;
            while(flag){
                for(int j=l;j>=(0+i);){
                    System.out.print(poet[j]);
                    j=j-6;
                }
                System.out.println();
                l++;
                i++;
                if(l==24){flag=false;}
            }
    }
 
}

8. The output of the nine-square grid: the nine-square grid means that the sum of the numbers in each row, each column, the diagonal column and the reverse diagonal column are equal; the most basic It is three rows and three columns = 9 grids, which is the famous nine-square grid; it can also be extended to 5*5=25 grids; as long as the number of rows and columns are equal and an odd number;

import java.util.Scanner; public class JiuGongGe {
    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
         @SuppressWarnings("resource")
         Scanner s=new Scanner(System.in);
         System.out.println("请输入一个大于等于3的奇数");
         int length=s.nextInt();
         if(length<3||length%2==0){
             System.out.println("输入的数字不合法!");
             return;
         }
         int[][] nineTable=new int[length][length];
         int indexX=0;
         int indexY=0;
         indexY=(nineTable.length-1)/2;
         nineTable[indexX][indexY]=1;
         for(int i=1;i<nineTable.length*nineTable.length;i++){
             indexX--;
             indexY++;
             if(indexY>=nineTable.length&&indexX>=0){
                 indexY=0;
             }else if(indexX<0&&indexY<nineTable.length){
                 indexX=nineTable.length-1;
             }else if(indexY>=nineTable.length&&indexX<0){
                 indexY--;
                 indexX=indexX+2;
             }else if(nineTable[indexX][indexY]!=0){
                 indexY--;
                 indexX=indexX+2;
             }
             nineTable[indexX][indexY]=i+1;

         }
         for(int i=0;i<nineTable.length;i++){
             for(int j=0;j<nineTable[i].length;j++){
                 System.out.print(nineTable[i][j]+"   ");
             }
             System.out.println();
             System.out.println();
         }

     }

     }


The above is the detailed content of Share a few typical examples of Java programming. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor