---+Hint 3 on random numbers for Lab 2 (Fall 2024) Here is program that will print a random integer between 0 and 10: <pre> import java.io.*; import java.util.*; public class RandomDemo { public static void main(String[] args) { Random generator; int number; generator = new Random(); number = generator.nextInt(10); System.out.println(number); } } </pre>
This topic: CenterForComputing
>
WebHome
>
Syllabi
>
SyllabiFall2024
>
CSC121SylF2024
>
CSC121F2024Lab02
>
CSC121F2024Lab02Hint03
Topic revision: r2 - 2024-09-03 - CathyBareiss
Copyright © 2008-2026 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback