search
HomeJavajavaTutorialSummarize and organize the process control of JAVA learning

This article brings you relevant knowledge about java, which mainly introduces related issues about process control, including input and output, branch statements and loop statements, etc. I hope it will be helpful to everyone helpful.

Summarize and organize the process control of JAVA learning

Recommended study: "java tutorial"

JAVA input and output

Input

Two input methods:

Method one: java.util.Scanner
The code is as follows:

public class a {
    public static void main(String[] args) {
        var sc = new Scanner(System.in);
        System.out.println("请输入姓名:");
        String name = sc.nextLine();
        System.out.printf("%n欢迎你:%s", name);
    }}

Generate Scanner object , output "Please enter your name:", return the input string and assign it to name, output "%nWelcome %s" where %n means line break %s means name

Result: Summarize and organize the process control of JAVA learning

Method 2: JOptionPane If the input content is confirmed, the string value will be null. As long as it is not confirmed, it will be null

public class a {
    public static void main(String[] args) {
        String w = JOptionPane.showInputDialog("请输入词汇:");
        System.out.println(w);
    }}

Result:
Summarize and organize the process control of JAVA learning
Summarize and organize the process control of JAVA learning

Output

Three ways to output on the console
Method one: System.out.print(); Output to the console
Method two: System.out.println(); Output to the console and wrap
Method 3: System.out.printf(); Format the output to the console

Code demonstration:

The first type is output directly without line breaks

public class a {
    public static void main(String[] args) {
        int w = 1;
        int a = 2;
        System.out.print(w);
        System.out.print(a);
    }}

Result:Summarize and organize the process control of JAVA learning

The second type is output with line breaks

public class a {
    public static void main(String[] args) {
        int w = 1;
        int a = 2;
        System.out.println(w);
        System.out.println(a);
    }}

Result:
Summarize and organize the process control of JAVA learning

The third formatted output
%d means an int type variable, which is to replace the first value with the value of w %d, the value of a replaces the second %d

public class a {
    public static void main(String[] args) {
        int w = 1;
        int a = 2;
        System.out.printf("w=%d a=%d", w, a);
    }}

Result:
Summarize and organize the process control of JAVA learning

Branch statement

if else

if() As long as the conditions in brackets are correct, it will return true, if it is wrong, it will return false
else means otherwise

public class a {
    public static void main(String[] args) {
       if (1>2){
           System.out.println("A");
       }else {
           System.out.println("B");
       }
    }}

Multiple judgments are as follows : If the first judgment is incorrect, the next judgment will be made. When the return value is true, it will be executed. Otherwise, else

public class a {
    public static void main(String[] args) {
        if (1 > 2) {
            System.out.println("A");
        } else if (1 > 0) {
            System.out.println("B");
        } else {
            System.out.println("C");
        }
    }}

switch case default

switch multi-branch switch statement will be executed.
switch(w) w in parentheses is the judgment parameter, and the number after case is the value that matches w. When the value of w matches the value after the case, the statement in the current case is executed
break means to exit the current judgment, which means that there is no need to judge again later
default means the default value, when there is no match The default is this

public class a {
    public static void main(String[] args) {
        int w=1;
        String wk = "";
        switch (w) {
            case 2:
                wk = "星期一";
                break;
            case 3:
                wk = "星期二";
                break;
            case 4:
                wk = "星期三";
                break;
            case 5:
                wk = "星期四";
                break;
            case 6:
                wk = "星期五";
                break;
            case 7:
                wk = "星期六";
                break;
            default:
                wk = "星期日";
                break;
        }
        System.out.println(wk);
    }}

result:
Summarize and organize the process control of JAVA learning

Loop statement

for

for ( int i = 0; i 5

public class a {
    public static void main(String[] args) {
        for (int i = 0; i <p> Result: <br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/067/7aa0164809e23dcd8cf553ff03309c56-7.png?x-oss-process=image/resize,p_40" class="lazy" alt="Summarize and organize the process control of JAVA learning"></p><h2 id="for-in">for in</h2><blockquote><p>for in is mainly used to loop collections Or an array, use an array to demonstrate </p></blockquote><pre class="brush:php;toolbar:false">public class a {
    public static void main(String[] args) {
        int[] a = {1, 2, 3, 4, 5};
        for (int i : a) {
            System.out.println(i);
        }
    }}

i corresponds to the value in the table below of array a, which is equivalent to looping output a[0],a[1]a[2],a [3]The value of a[4]

Summarize and organize the process control of JAVA learning

while do while

  • while(condition){}
    Execute the statement if the conditions are met, exit if not.
public class a {
    public static void main(String[] args) {
        int i = 0;
        while (i <p>Result: <br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/067/81a53db7ed1edb59950a1c21ae62f15c-9.png?x-oss-process=image/resize,p_40" class="lazy" alt="Summarize and organize the process control of JAVA learning"></p><blockquote><p>do while<br> Different from while, do while is executed once and then judged</p></blockquote><pre class="brush:php;toolbar:false">public class a {
    public static void main(String[] args) {
        int i = 0;
        do {
            i++;
            System.out.println(i);

        } while (i <blockquote><p>The output is executed first and then judged. Therefore, the condition i</p></blockquote><p>The result is:<br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/067/81a53db7ed1edb59950a1c21ae62f15c-10.png?x-oss-process=image/resize,p_40" class="lazy" alt="Summarize and organize the process control of JAVA learning"></p><h2 id="break-continue">break continue</h2><blockquote><p><strong>break;</strong> Terminate the current loop statement<br><strong>continue;</strong> End this loop and immediately prepare to start the next loop</p></blockquote><pre class="brush:php;toolbar:false">int i = 0;while (++i  10) break;}

当i被2整除就跳过这一次,进行下一次循环。当i大于10就结束循环。

推荐学习:《java学习教程

The above is the detailed content of Summarize and organize the process control of JAVA learning. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to elegantly obtain entity class variable names to build database query conditions?How to elegantly obtain entity class variable names to build database query conditions?Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to use the Redis cache solution to efficiently realize the requirements of product ranking list?How to use the Redis cache solution to efficiently realize the requirements of product ranking list?Apr 19, 2025 pm 11:36 PM

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

How to safely convert Java objects to arrays?How to safely convert Java objects to arrays?Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How do I convert names to numbers to implement sorting and maintain consistency in groups?How do I convert names to numbers to implement sorting and maintain consistency in groups?Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the default run configuration list of SpringBoot projects in Idea for team members to share?How to set the default run configuration list of SpringBoot projects in Idea for team members to share?Apr 19, 2025 pm 11:24 PM

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software