Java programming ideology version 4 Chapter 4 Personal exercises and programming ideology version 4
Chapter 4 Exercise 1: (1) write a program and print the values from 1 to 100
public static void main(String[] args) {test(100);}public static void test(int num){int i=0;while(i<num){System.out.print(++i);if(i!=100){System.out.print("、");}}System.out.println();int j=0;do{System.out.print(++j);if(j!=100){System.out.print("、");}}while(j<100);System.out.println();for(int k=0;k<100;){System.out.print(++k);if(k!=100){System.out.print("、");}}}
Exercise 2: (2) write a program to generate a random number of 25 int types. For each random number, use the if-else statement to classify it as greater than or less, or is equal to the value randomly generated immediately following it.
Public static void main (String [] args) {test ();} public static void test () {int num [] = new int [25]; for (int I = 0; I <25; I ++) {Random r = new Random (); int n = r. nextInt (); num [I] = n; if (I> 0) {compare (num [I-1], num [I]) ;}} public static void compare (int n1, int n2) {// System. out. println (n1 + "," + n2 + "\ n n1> n2:" + (n1> n2) + "\ t" + "n1 = n2: "+ (n1 = n2) +" \ t "+" n1 <n2: "+ (n1 <n2); if (n1> n2) {System. out. println (n1 + "greater than" + n2);} else if (n1 <n2) {System. out. println (n1 + "less than" + n2);} else {System. out. println (n1 + "equal to" + n2 );}}
Exercise 3: (1) Modify Exercise 2 and include the code in a while infinite loop. Run it until it is interrupted on the keyboard (usually by pressing Ctrl + c ).
Public static void main (String [] args) {test ();} public static void test () {int num [] = new int [2]; int I = 0; boolean flag = false; while (true) {Random r = new Random (); int n = r. nextInt (); if (flag) {num [I] = n; compare (num [0], num [1]);} else {flag = true; num [I] = n;} I = 0? 1:0 ;}} public static void compare (int n1, int n2) {// System. out. println (n1 + "," + n2 + "\ n n1> n2:" + (n1> n2) + "\ t" + "n1 = n2: "+ (n1 = n2) +" \ t "+" n1 <n2: "+ (n1 <n2); if (n1> n2) {System. out. println (n1 + "greater than" + n2);} else if (n1 <n2) {System. out. println (n1 + "less than" + n2);} else {System. out. println (n1 + "equal to" + n2 );}}
Exercise 4: (3) write a program and use two nested for loops and the remainder operator (%) to detect and print prime numbers (only divisible by itself and 1, the integer that cannot be divisible by other numbers ).
Public static void main (String [] args) {test (33);} public static boolean test (int num) {for (int I = 2; I <num; I ++) {if (num % I = 0) {System. out. println (num + "not a prime number"); return true ;}} System. out. println (num + "is a prime number"); return false ;}
Exercise 5: (4) repeat exercise 10 in chapter 1. Do not use the Integer. toBinaryString () method. Instead, use the ternary and bitwise operators to display the values of binary 1 and 0.
Answer: JAVA programming ideology version 4th chapter 4 exercise 5
I am also very interested in this question. I hope you can share it later.
Who has the answer to the fourth edition of java programming ideas?
No one answered the question. Join the QQ group about JAVA or join the group about this book directly. They have answers. I am also a fan. I suggest using this!