Entries by admin

C++ Write a function for the following formula and please…

C++ Write a function for the following formula. and please please don’t copy it from the internet, it needs to be very basic level commented out and original so i can understand it Distance: computes the distance d traveled in t seconds by an object that started at rest and then accelerated at a meter […]

C10; Introduction to Computers Assignment 8; Business Con…

C10; Introduction to Computers Assignment 8; Business Consulting Remember Bill? He was the gentleman that you helped to start up his business in week 4. Well his business is doing well, but he has come to you with some questions and concerns. You discuss each of these with Bill and promise to send him a […]

Calculation on the data in the array

1. Create the array 2. Input and store some data in the array (try to use an input file or user typed input and a loop) 3. Do some calculation on the data in the array (try to do something more complex than SUM or COUNT, if you can!) 4. Display the results of the […]

Calendar.java code: Complete the printMonth() and firstDa…

Calendar.java code: Complete the printMonth() and firstDayOfNextMonth() methods: import java.util.Scanner; public class Calendar { static final int FEBRUARY = 2; static final int MONTHS_PER_YEAR = 12; static int [] daysPerMonth = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; static String [] months = {“”, ” Januray”, “February”, ” March”, […]