2022.7.3DAY595

       Today I reviewed discrete mathematics for a day, and reviewed the content about functions and graph theory. I did a final question about 18 years of computing, software and other majors. I found that the test is more difficult than the textbook test. Discrete mathematics can be regarded as an elective course in intelligence majors! I heard from the teacher that the test is not difficult, and I have done the homework carefully, and now I understand what I don't understand. However, if you want to get a big score, you have to review it several times.

       After playing basketball for 1.5 hours, I found that there is never a shortage of basketball players in the basketball court. A roommate in the dormitory recently fell in love with basketball after watching a game. He bought a basketball and a shooting equipment. In the morning, I heard that he had already done the nucleic acid test. After asking about it, I found out that he got up to play basketball at 6:00 in the morning (by the way, he also had the nucleic acid test). When he was playing on the basketball court, I asked him if he would wake up at 6:00 tomorrow. If he got up, take me with him. chant. To be honest, I have never seen Western Post at 6:00 in the morning. Kobe once said: "Have you seen Los Angeles at 4:00 in the morning?" Get up to play basketball at 6:00 in the morning, I think he learned from Kobe! Interest is indeed a bit strange. But it still feels very interesting. If you leave some expectations for tomorrow, you won’t be unable to get up. However, whether this can last is a question. I hope he can persevere and do it!

       The last is the review of "Principles of Marxism". I read it for 10 minutes in the library, but it was boring. The more I read such a thick book, the less passion I get. Do you have to have someone to accompany you for early reading? I feel that reading has no atmosphere, and I am not very willing to memorize things. Is this something I don’t like to do? I need to dig out the fun in one thing, so that I can continue to do it.

Read: "the water of life" 100% deliverer n rescuer grieve v feel sad

Review: "Discrete Mathematics", "Principles of Marxism"

public class Outer {
    private  int num=10;


    public void method(){
        int num2=20;
         class Inner
         {

            public void show()
            {
                System.out.println(num);
                System.out.println(num2);
            }
        }
        Inner i=new Inner();
        i.show();
    }


}

     

public class InnerDemo {
    public static void main(String[] args) {
     //   Outer.Inner OI=new Outer().new Inner();
    //    OI.show();
        Outer O=new Outer();
        O.method();
    }
}

Guess you like

Origin blog.csdn.net/qq_58259539/article/details/125591326#comments_26596867
Day