Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 58 / 1624
C++ Instructions Download the files minFinding.cpp and FindMin.h At the moment m
C++ Instructions Download the files minFinding.cpp and FindMin.h At the moment minFind.cpp does not compile because it needs a proper definition of the findMin function, which you…
C++ Instructions Write a program that uses the function isPalindrome given in Ex
C++ Instructions Write a program that uses the function isPalindrome given in Example 6-6 (Palindrome). Test your program on the following strings: madam, abba, 22, 67876, 444244,…
C++ Instructions: Convert all of the arrays to dynamic arrays. Don’t forget to d
C++ Instructions: Convert all of the arrays to dynamic arrays. Don’t forget to delete the dynamic memory before your program ends. You must have three regular functions, one for g…
C++ Interest Rate + Principal Calculator Create a program that will that will ca
C++ Interest Rate + Principal Calculator Create a program that will that will calculate Yearly Interest or Compound Interest on a starting principal. Accept user input in dollars$…
C++ Introduction to Programming It is short and simple practice. Classes: member
C++ Introduction to Programming It is short and simple practice. Classes: members and methods Please solve #3, 4, 5. #include<iostream> #include<vector> .. using names…
C++ Introduction to Programming It is short and simple practice. Functions and C
C++ Introduction to Programming It is short and simple practice. Functions and Classes Please solve #6, 7, 8, 9, 10 #include<iostream> #include<vector> .. using namesp…
C++ Introduction to Programming It is short and simple practice. Please solve #1
C++ Introduction to Programming It is short and simple practice. Please solve #1,2,3,4,5,6,7 #include<iostream> #include<vector> ... using namespace std; Operator Over…
C++ Introduction to Programming It is short and simple practice. Please solve #1
C++ Introduction to Programming It is short and simple practice. Please solve #1,2,3,4,5 #include<iostream> ... Classes: members and methods Classes, continued: access speci…
C++ Introduction to Programming It is short and simple practice. Please solve #1
C++ Introduction to Programming It is short and simple practice. Please solve #1,2,3,4,5 #include<iostream> ... Classes: members and methods Classes, continued: access speci…
C++ Introduction to Programming It is short and simple practice. Please solve #4
C++ Introduction to Programming It is short and simple practice. Please solve #4, 5 #include<iostream> ... Classes: members and methods Classes, continued: access specifiers…
C++ Introduction to Programming It is short and simple practice. Please solve #6
C++ Introduction to Programming It is short and simple practice. Please solve #6, 7, 8, 9, 10 #include<iostream> ... Classes: members and methods Classes, continued: access …
C++ Introduction to Programming It is short and simple practice. Please solve #6
C++ Introduction to Programming It is short and simple practice. Please solve #6, 7, 8, 9, 10 #include<iostream> ... Classes: members and methods Classes, continued: access …
C++ Introduction to Programming.[college intro] It is a fundamental project and
C++ Introduction to Programming.[college intro] It is a fundamental project and simple. ELIZA is a "virtual therapist"; you type things to it and it asks you questions. Here's a s…
C++ Inventory Database Program using Files. *Note this is an \"All or Nothing\"
C++ Inventory Database Program using Files. *Note this is an "All or Nothing" points award: The first person to provide an entire working code with comments will be awarded the fu…
C++ Is it possible to solve it using the string function as well? To make teleph
C++ Is it possible to solve it using the string function as well? To make telephone numbers easier to remember, some companies use letters to show their telephone number. For exam…
C++ Iterators of a double linked list Goal: To understand how to work with itera
C++ Iterators of a double linked list Goal: To understand how to work with iterators of a linked list. To also learn how iterators are used, and why iterators are useful. The doub…
C++ JUST DO NUMBER 4 DO NOT USE RECURSIVE (no void) For this problem, we wish to
C++ JUST DO NUMBER 4 DO NOT USE RECURSIVE (no void) For this problem, we wish to draw a number of shapes, using "character graphics". For each part of the problem, your program sh…
C++ JUST TASK 2 For this project, you will practice decomposing a problem into f
C++ JUST TASK 2 For this project, you will practice decomposing a problem into functions. In the final part, you will also get some practice with pass-by-reference functions. As p…
C++ JUST THE DRIVER PROGRAM In the Caesar cipher, each letter is always shifted
C++ JUST THE DRIVER PROGRAM In the Caesar cipher, each letter is always shifted by the same value. What if we shifted each letter by a different value? A cipher known as the Vigen…
C++ LAB ASSIGNMENT Circular Queue When using a static array, creating a way impl
C++ LAB ASSIGNMENT Circular Queue When using a static array, creating a way implement a static array without overflowing the memory allocated for the array When you hardcode your …
C++ LANGUAGE 1) Write a program that creates a 2D array with 20 rows and 50 colu
C++ LANGUAGE 1) Write a program that creates a 2D array with 20 rows and 50 columns. Ask the user to input a positive integer or seed value. Use the seed value to populate the arr…
C++ LANGUAGE Write a function named coinToss that simulates the tossing of a coi
C++ LANGUAGE Write a function named coinToss that simulates the tossing of a coin. When you call the function, it should generate a random number in the range of 1 through 2. If t…
C++ LANGUAGE! Question: Average Rainfall Write a program that uses nested loops
C++ LANGUAGE! Question: Average Rainfall Write a program that uses nested loops to collect data and calculate the average monthly rainfall last year. The program uses a loop to co…
C++ LANGUAGE!!!! Create a program that simulates a slot machine. When the progra
C++ LANGUAGE!!!! Create a program that simulates a slot machine. When the program runs it should do the following: 1. Asks the user to enter the amount of money he wants to enter …
C++ LANGUAGE!!!! Create a program that simulates a slot machine. When the progra
C++ LANGUAGE!!!! Create a program that simulates a slot machine. When the program runs it should do the following: 1. Asks the user to enter the amount of money he wants to enter …
C++ LANGUAGE!!!! Write a program to calculate stock transaction. The program wil
C++ LANGUAGE!!!! Write a program to calculate stock transaction. The program will ask the user to enter the follow information: The name of the share purchased The number of share…
C++ LENGTH OF LINE PROGRAM LAB REPORT 1) Enter your name, student ID, platform (
C++ LENGTH OF LINE PROGRAM LAB REPORT 1) Enter your name, student ID, platform (Mac or PC) and date Name and Student ID: Class: CIS054 C/C++ Programming Platform (Mac or PC): Date…
C++ LINKED LIST SINGLY IMPLEMENTATION.. NEED HELP WITH ERRORS #include
C++ LINKED LIST SINGLY IMPLEMENTATION.. NEED HELP WITH ERRORS #include<iostream> #include<cstdio> #include<cstdlib> #include <cstdint> using namespace std;…
C++ Lab Data file for the lab: CIS 22A Lab 2 Scientific Notation Write a program
C++ Lab Data file for the lab: CIS 22A Lab 2 Scientific Notation Write a program to analyze scientific data. Input: The first line of the file contains the number of data readings…
C++ Lab you will implement YOUR OWN VERSIONS of some functions available for ‘cs
C++ Lab you will implement YOUR OWN VERSIONS of some functions available for ‘cstring’. in C++ The functions to be implemented/duplicated are: i. strlen (original) --> stringLe…
C++ Lab6a We\'ve seen two ways we can write a function that swaps the values of
C++ Lab6a We've seen two ways we can write a function that swaps the values of two int variables: one way passes the ints by reference, the other way passes the addresses of those…
C++ Lab: Step 1: Requirements - DIVER Scoring Program Your State Dive Associatio
C++ Lab: Step 1: Requirements - DIVER Scoring Program Your State Dive Association presently scores its diving competitions with pencil and paper. They would like for you to design…
C++ Langauge 13. (12 pts) Add a member function found to a given listType class.
C++ Langauge 13. (12 pts) Add a member function found to a given listType class. The function will find out how many copies of ItemType value exist in the dynamic array pointed by…
C++ Language ( using just this 4 libraries #include #include
C++ Language ( using just this 4 libraries #include <iostream> #include <string> #include<fstream> #include <ctime>) Often we need to keep track of what we…
C++ Language I have a class named movie which allows a movie object to take the
C++ Language I have a class named movie which allows a movie object to take the name, movie and rating of a movie that the user inputs. Everything works fine but when the user ent…
C++ Language In this assignment you will be writing several functions to practic
C++ Language In this assignment you will be writing several functions to practice your skills in writing recursive functions and using stacks/queues. First, start by writing and t…
C++ Language In this assignment you will be writing several functions to practic
C++ Language In this assignment you will be writing several functions to practice your skills in writing recursive functions and using stacks/queues. First, start by writing and t…
C++ Language In this assignment you will be writing several functions to practic
C++ Language In this assignment you will be writing several functions to practice your skills in writing recursive functions and using stacks/queues. First, start by writing and t…
C++ Language Please Write a program that simulates a soft drink machine. The pro
C++ Language Please Write a program that simulates a soft drink machine. The program should use a structure named Drink that contains the following information: ? The drink name ?…
C++ Language This project has 3 parts: Part 1) In this first part, you will work
C++ Language This project has 3 parts: Part 1) In this first part, you will work with an integer array containing 100 elements initialized to random numbers from 1 to 30. After in…
C++ Language Write a program that simulates the dialing of a phone number. A use
C++ Language Write a program that simulates the dialing of a phone number. A user will input an 8-place number, for example: 359-3177 (note that the hyphen is considered a digit).…
C++ Language and output the following The local PennDOT Office needs a program t
C++ Language and output the following The local PennDOT Office needs a program to grade the written portion of the driver’s test. Student’s take this test upon completing the clas…
C++ Language used. This assignment is to give you practice using one-dimensional
C++ Language used. This assignment is to give you practice using one-dimensional arrays and sorting. In competitive diving, each diver makes dives of varying degrees of difficulty…
C++ Language, Microsoft Visual Studio 2015 4.6 (Rat ional Class) Create a class
C++ Language, Microsoft Visual Studio 2015 4.6 (Rat ional Class) Create a class called Rational for performing arithmetic with fractions Write a program to test your class. Use in…
C++ Language: Write a program that will manage a simple address book. The progra
C++ Language: Write a program that will manage a simple address book. The program should allow you to view and search existing entires as well as add new entries. The data should …
C++ Language: write a function that accepts an array of integers and its size as
C++ Language: write a function that accepts an array of integers and its size as arguments. The function should create a new array that is of half size the argument array (round u…
C++ Learning Objectives: The objective of this lab is to gain experience working
C++ Learning Objectives: The objective of this lab is to gain experience working with an STL container, in particular the STL list. Note: STL <algorithm> sort() cannot be us…
C++ Let the user enter one number at a time and store in an array. Ask them afte
C++ Let the user enter one number at a time and store in an array. Ask them after each number if they have more data. Continue until they say they are done. Then sort the numbers …
C++ Level 2 - Assignment 9 Lab 9 - File IO The attached Text file (http://progra
C++ Level 2 - Assignment 9 Lab 9 - File IO The attached Text file (http://programming.msjc.edu/cppii/labs/labsb/lab09/Numbers.txt). Links to an external site. contains both whole …
C++ Level 2: Lab 10 - Recursion In a previous lab you created a function called
C++ Level 2: Lab 10 - Recursion In a previous lab you created a function called isNaN that would check to see if a string contains a valid number. For this assignment create a fun…