2023.10.10(关于9.18日课程的动手动脑等课后实验)
// RandomInt.java
// Shifted, scaled random integers
import javax.swing.JOptionPane;
public class RandomInt {
public static void main( String args[] )
{
int value;
String output = "";
for ( int i = 1; i <= 20; i++ ) {
value = 1 + (int) ( Math.random() * 6 );
output += value + " ";
if ( i % 5 == 0 )
output += "\n";
}
JOptionPane.showMessageDialog( null, output,
"20 Random Numbers from 1 to 6",
JOptionPane.INFORMATION_MESSAGE );
System.exit( 0 );
}
}
使用了方法重载,方法名相同但是参数类型不同。
也使用了方法重载,可以包含不同参数类型