Introduction to Computers and Programming Lecture 12: Math.random() Professor: Evan Korth New York University
Road Map Math.random Reading: –Liang 4: Chapter 4: Section –Liang 5: Chapter 4: Section 4.8.5
review What is a method? What information can you learn about a method from its header? What does it mean to invoke a method? What is the difference between a formal parameter and an actual parameter? Why don’t we have to import the Math class? What is abstraction in computer science?
random numbers Often we want our programs to generate random numbers. –games of chance –testing without user interaction java.lang.Math provides a method which can be used to generate random numbers
2003 Prentice Hall, Inc. All rights reserved. 5 Random-Number Generation Java random-number generators –Math.random() Returns a double value with a positive sign, greater than or equal to 0.0 and less than 1.0. –What if we want to generate random integers?
2003 Prentice Hall, Inc. All rights reserved. 6 Random-Number Generation –( int ) ( Math.random() * 6 ) Produces integers from 0 - 5
2003 Prentice Hall, Inc. All rights reserved. Outline 7 RandomIntegers. java Line 16 Produce integers in range 1-6 Line 16 Math.random returns double s. We cast the double as an int 1 // Fig. 6.7: RandomIntegers.java 2 // Shifted, scaled random integers. 3 import javax.swing.JOptionPane; 4 5 public class RandomIntegers { 6 7 public static void main( String args[] ) 8 { 9 int value; 10 String output = ""; // loop 20 times 13 for ( int counter = 1; counter <= 20; counter++ ) { // pick random integer between 1 and 6 16 value = 1 + ( int ) ( Math.random() * 6 ); output += value + " "; // append value to output // if counter divisible by 5, append newline to String output 21 if ( counter % 5 == 0 ) 22 output += "\n"; } // end for 25 Produce integers in range 1-6 Math.random returns double s. We cast the double as an int
2003 Prentice Hall, Inc. All rights reserved. Outline 8 RandomIntegers. java 26 JOptionPane.showMessageDialog( null, output, 27 "20 Random Numbers from 1 to 6", 28 JOptionPane.INFORMATION_MESSAGE ); System.exit( 0 ); // terminate application } // end main } // end class RandomIntegers
2003 Prentice Hall, Inc. All rights reserved. Outline 9 RollDie.java Line 14 Produce integers in range 1-6 Lines Increment appropriate frequency counter, depending on randomly generated number 1 // Fig. 6.8: RollDie.java 2 // Roll a six-sided die 6000 times. 3 import javax.swing.*; 4 5 public class RollDie { 6 7 public static void main( String args[] ) 8 { 9 int frequency1 = 0, frequency2 = 0, frequency3 = 0, 10 frequency4 = 0, frequency5 = 0, frequency6 = 0, face; // summarize results 13 for ( int roll = 1; roll <= 6000; roll++ ) { 14 face = 1 + ( int ) ( Math.random() * 6 ); // determine roll value and increment appropriate counter 17 switch ( face ) { case 1: 20 ++frequency1; 21 break; case 2: 24 ++frequency2; 25 break; case 3: 28 ++frequency3; 29 break; 30 Produce integers in range 1-6 Increment appropriate frequency counter, depending on randomly generated number
2003 Prentice Hall, Inc. All rights reserved. Outline 10 RollDie.java 31 case 4: 32 ++frequency4; 33 break; case 5: 36 ++frequency5; 37 break; case 6: 40 ++frequency6; 41 break; } // end switch } // end for JTextArea outputArea = new JTextArea(); outputArea.setText( "Face\tFrequency" + "\n1\t" + frequency "\n2\t" + frequency2 + "\n3\t" + frequency "\n4\t" + frequency4 + "\n5\t" + frequency "\n6\t" + frequency6 ); JOptionPane.showMessageDialog( null, outputArea, 55 "Rolling a Die 6000 Times", JOptionPane.INFORMATION_MESSAGE ); System.exit( 0 ); // terminate application } // end main } // end class RollDie This is different from the example I showed in the compiler. I left it this way to show you that showMessageDialog() can take other objects besides String for the message. Remember the API. You do not need to know JTextArea for this class!
2003 Prentice Hall, Inc. All rights reserved. 11