Computer Science Homework Solutions

C Program to display in words what number is entered

Write C program to display in words what number is entered when a single digit is entered. Ask the user to enter a digit between 0 and 9. Have the program print out the digit in words, for example: Enter a digit between 0 and 9: 4 You entered the number four Assume that the user will enter only a single digit. The user ...continues

Write a C program to determine whether the year entered from the keyboard is a leap year

Write a C program to determine whether the year entered from the keyboard is a leap year. Display a message indicating whether the year is or is not a leap year. To calculate this problem, a year is a leap year if it is evenly divisible by 4 and not by 100, or if it is evenly divisible by 400. Check the remainder of the divi ...continues

Write a program to generate and display a table of n and n2

Write a program to generate and display a table of n and n2, for integer values of n ranging from 1 through 10. Be sure to print appropriate column headings

Write a C function named liquid() that is to accept an integer number and the addresses of the variables...

Write a C function named liquid() that is to accept an integer number and the addresses of the variables gallons, quarts, pints, and cups. The passed integer represents the total number of cups, and the function is to determine the number of gallons, quarts, pints, and cups in the passed value. Using the passed addresses, the fu ...continues

Write a program that reads a 5 x 5 two-dimensional array of integers and then prints the row sums and the column sums

Write a program that reads a 5 x 5 two-dimensional array of integers and then prints the row sums and the column sums: Enter row 1: 8 3 9 0 10 Enter row 2: 3 5 17 1 1 Enter row 3: 2 8 6 23 1 Enter row 4: 15 7 3 2 9 Enter row 5: 6 14 2 6 0 Row Totals: Column Totals: You may either initialize this array with ...continues

Write a C program that has a declaration in main() to store the string

If you choose to answer problem 2 in Section B, you must complete both parts a and b. a. Write a C program that has a declaration in main() to store the string "What's for lunch?" into an array named message. There should be a function call to restaurant() that accepts the message as an argument named menu and then displays t ...continues

Write a C program that accepts a month and day from the keyboard as input

Write a C program that accepts a month and day (for example, June 14) from the keyboard as input. Store this information in one string called date. Call a function named separate() passing in the string date and the addresses of a tempmonth array and tempday integer. The separate() function should extract the two values from the ...continues

Write a program to prompt a user for a file name.

Write a program to prompt a user for a file name. Count: the number of characters in the file (letters or numbers) the number of words in the file the number of lines in the file Print out your results on the screen.

C program: Create a set/list of enumerated constants called week that contains the days of the week

Create a set/list of enumerated constants called week that contains the days of the week. Have a variable called today that is of type week. Assign a value to today. If the day is Monday through Friday, print "Go to work!" If the day is Saturday or Sunday, print "You can rest today!"

Benefits of programming knowledge

How does knowledge of programming concepts benefits individuals working in almost any IT position? Include at least one specific example of how java programming knowledge benefits nonprogramming working in IT?

Browse