
Imagine you are using a two-dimensional array as the basis for creating the game battle- ship. In the game of battleship a `~’ character entry in the array represents ocean (i.e., not a ship), a `#’ character represents a place… Read More
DISCOUNT OFFER: Buy More Save More - Up to 30% Off
Welcome to CSIS 111 – Introduction to Programming C++
Course Description:
Introduction to structured programming and algorithms with an object-oriented language. Topics include input/output, flow of control, functions, and an introduction to software engineering. Programming assignments are required.
This course provides an introduction to basic computer programming concepts using the C++ language. It also provides a foundation for learning additional aspects of C++ and other languages by teaching problem-solving techniques and a design methodology in addition to the specifics of C++.
Need Help in CSIS 111?
We can help you if your problem statement is updated. Just email your assignments at support@smartassignmenthelp.com.
We provide help for students all over the world.
Imagine you are using a two-dimensional array as the basis for creating the game battle- ship. In the game of battleship a `~’ character entry in the array represents ocean (i.e., not a ship), a `#’ character represents a place… Read More
Use functional decomposition to write a C++ program that asks the user to enter his or her weight and the name of a planet. Use an enumerated type called planetType to represent the planets and use a switch statement that… Read More
You are working for a lumber company, and your employer would like a program that calculates the cost of lumber for an order. The company sells pine, fir, cedar, maple, and oak lumber. Lumber is priced by board feet. One… Read More
Write a C++ program that reads data from an input file, takes the data and computes student grades for an assignment by converting the raw score to a percentage given each student’s score and the total points. The final score… Read More
You are burning some music CDs for a party. You have arranged a list of songs in the order you want to play them. However, you would like to maximize your use of space on the CD, which holds 80… Read More
Write a C++ program that computes a student’s grade for an assignment as a percentage given the student’s score and total points. The final score must be rounded up to the nearest whole value using the ceil function in the… Read More
The number of permutations of a set of n items taken r at a time is given by the following formulan!/r!(n−r)!: where n! is the factorial of n, r! is the factorial of r, and (n-r)! is the factorial of the result of n-r. The factorial of a number n can be solved using the… Read More
Install Visual Studio Express 2019 for Windows Desktop (you will need to create a free Microsoft account as part of this process, if you do not already have one). LINK – https://www.visualstudio.com/downloads/ Instructions for installation can be found in the Reading &… Read More