"Thinking"

We still don’t talk about the code today. Hu Tianhai blew a wave and complained about it, and let’s talk about the code.

Theme One

Today, it’s hard to do some exercise at night. Recently, I have been working on Java and I have been studying for myself all day long at school. To be honest, it’s good to have a teacher to teach you, but I’m not smart enough, and my teacher doesn’t like students like me. Because I want to learn what I am interested in, what they teach is not that I am not interested. It's that you don't even know how to cut slabs, just like teaching you how to build tall buildings. Well, it doesn't make much sense for me to listen to this kind of class. I want to lay the foundation and try those things. To be honest, I don't regret this decision I made at all. Because I was forced, and what other people teach is beyond your ability to master (people are self-knowledge), so you should think about what you want to do that interests you. I like big data. Therefore, I think it is necessary to learn Java and master Java. It is possible to study further only by learning Java programming and then understanding the relevant knowledge. I feel that I am fulfilling every day because I have a goal to work hard for. Every day, get up on time at 6:30 in the morning, go to the cafeteria to buy breakfast and go back to the dormitory to engage in Java programming, study the data types of Java, and the data storage and type conversion of Java in the computer. However, I still feel that my efforts are not enough, because I am not a smart person. I may often spend several hours to compile a Java program, but people can do it in an hour. This will not affect my goal. Quoted from "Naruto | Shippuuden" Matt Dai (Kay's father) said to Metkay (Kay King): "Self-restraint refers to When you challenge these difficulties, you deliberately put on a shackle to yourself, push yourself to the end, and make rules that belong to you. It is precisely because of that shackle that you will face the challenge seriously. Once you fail, you can pass. Practicing the rules, allowing yourself to get rigorous exercise, and making yourself continuous improvement, this is called self-discipline. Your efforts are not wrong. Even if you only finish halfway, you really worked hard. Reward your hard work with a hug." I am very impressed by this section of Hokage.

Theme two

I am a person who likes nature and natural scenery, although my photography technique is very scumbag. I observe the behavior of animals and get a rule: when faced with danger, they will try to fight back or run away. The animals that fight back are because they have the ability and do not want their territory to be violated. Fleeing animals, because they have no ability to fight back, they can only escape if they don't want to sit still. Animals with territories are in the minority, and animals without territories are in the majority. In fact, humans are also animals. I don't want to escape reality. I choose to fight back even though my ability is insufficient. Fortunately, time can be used to stack my abilities. In fact, from this point of view, we are very lucky. Because antelopes are destined to only eat grass when they are born, and are destined to be hunted. People can change themselves through learning, so that they can take on a lot of responsibilities (implying that they have more abilities). Quote from: "Spider-Man" words: Peter (Peter/Peter), you have to know that the greater the ability, the greater the responsibility! People with greater ability have greater responsibilities. Therefore, natural treatment is relatively better. The abilities of each of us are learned by ourselves, not taught by teachers, nor said by our elders. Because he/she cannot open your skull and give his experience and experience to you. You need to experience the process yourself, and then accumulate experience (E) through continuous experience (training T), sum up the best practices from the experience, and improve your own way of doing things (performance P). Then, go through similar things again and use the same routine to optimize the way of doing things (Performance P). In fact, my personal prejudice, technology originates from life, and imagination triggers creativity. Machine learning is a way of simulating human beings, implemented in computer language.

Theme Three

The past is a prologue, and the future is still promising. Kobe said: "I want my child to be a lion, not an antelope. If you want to be an antelope, you must be the fastest one." The meaning of this sentence is self-evident. We are making decisions at all times. Instead of making decisions. Today, I listened to a lecture from a teacher who taught us professional English (I admire this teacher because he is very professional and strong!), he said: "Many times we are making decisions rather than making decisions. "(When talking about decision), because the decision can be changed at will, but the decision cannot. My prejudice, if you turn decision thinking into decision thinking, your confusion may disappear.

Recently, I was learning Java crazy. When I went to class to write comments for the Python programs I compiled, I wrote them in the Java comment format. I unconsciously wrote it wrong several times, hahahaha.

Today is special because I thought about a lot of things and made some decisions. So, I also ended in a special way, I hope you don’t mind.

Finally, create a java file named thanks, and print a wave with Java code.

import java.util.*;

/**
 * class:thanks
 * created time by 2021-3-4
 * @author Mr.pan_xk
 *
 */

public class thanks{
    
    
	public static void main(String[] args){
    
    
		Scanner impt = new Scanner(System.in);
		String str = "感谢大家前来观看鄙人的文章,文中或有诸多不妥之处,还望指出和海涵。";
		for(long i = 0L;i < 1000000000;i++){
    
    
			System.out.println(str);
			System.out.println("是否继续循环?");
			String want = impt.next();
			if(want.equals("是")){
    
    
				continue;
			}
			else{
    
    
				break;
			}
		}
	}
}

operation result:
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_43408020/article/details/114379617