Given an int variable n that has been initialized to a positive value and, in addition, int variables k and total that have already been declared , use a while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total . Use no variables other than n , k , and total and do not modify the value of n . total=0; k=0; do{ total+=k*k*k; k++; } while (k<=n);
Given an int variable n that has already been declared , write some code that repeatedly reads a value into n until at last a number between 1 and 10 (inclusive) has been entered. ASSUME the availability of a variable , stdin , that references a Scanner object associated with standard input. do { n = stdin.nextInt(); } while (n > 10 || n < 1);
Comments
Post a Comment