Topic: For
10. Fill an array with random numbers. Display the array. Output the average of all the numbers.
See more
21. You can determine where a year is a leap year if the year is divisible by 4. However, years that are also divisible by 100 are not leap years unless they are also divisible by 400, in which they are leap years. Write the psuedocode to determine for a year entered to be a standard year or a leap year. You should be able to repeat the entering of years as long as 0000 is not entered.
See more
41. Create a for loop to run 35 times, but display the counter variable in front of the numbers. Generate 3 random numbers 1-25 in each iteration of the for loop.
See more
47. Create a program that accepts information from the user about bugs in the system.
Think of the system as a generic software program and this is an overly simple process to report bugs.
See more