/** * __program description___ * @author __your name___ * @version __date__ */ public class Lab10b { public static void main( String[] args) { // constants // variables BigNum[] bignums; // program code bignums = new BigNum[10]; for ( int i = 0; i < 10; i++) { for ( int j = 0; j < BigNum.SIZE; i++) { ( bignums[i]).digits[j] = (int)( Math.random() * ( BigNum.SIZE + 1)); } } } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)