SCMP 118 Introduction to Programming in C Fall 2019: 1:10 2:30PM TH Instructor: James Skon This course presents an introduction to computer programming intended...
A test indexing program Text Index Last time we created a class to create an word index: https://repl.it/@JimSkon/IndexBuild Parse Parsing a document into words...
Word Index Create a class that stores a list of words, and for each word a list of lines that word appears on. Consider the poem: A stranger came to the door at eve...
Strings Write a function to test if a string is a palindrome. Write a function to find each word in a sentence, ond put it in a vector. Only save unique words. Vector...
String Class Hands On 1. Write code to enter two strings and then tell if the second is contained in the first. 2. Write code to enter two strings and then tell how...
Classes and Objects with friends Goal Enhance Date function with friend and operator methods Steps 1. Start with the Date class. A copy is here : DateClass 2. Add...
Exactly Which Years Are Leap Years? We add a Day on February 29, almost every four years. The leap day is an extra, or intercalary, day and we add it to the shortest...
Student Class Hands on Activity Lucern Vasquez is trying to keep track of her students grades, and you have volunteered to help. She wants to keep a list of students...
Hands On Candidate Class Steps 1 Go here to get candidate class 1 Make a fork of this code 1 Add 2 new candidates to the code. 1 Modify the class to...
Introduction to Programming Midterm study Guide Overview This exam is a mostly multiple choice test on the concepts and mechanics of programming in C . This exam...
Hands On Functions Step 1 Write a function to take two numbers n and m, and print the sum, product, division (both ways), and the n^m and m^n Step 2 Write a function...
While Loops and Flow Control 1 Write program to report if a number is even or odd. 1 Write a program where the user enters two numbers N and D. The program then...
Lab 0 Link Lab based on Chapter 1. 0) The purpose of this exercise is to produce a catalog of typical syntax errors and error messages that will be encountered by...
SCMP 118 Introduction to Programming in C Spring 2018: Section 01: 1:10 2:30PM TH Instructor: James Skon This course presents an introduction to computer programming...
Web Notification This is a subscription service to be automatically notified by e mail when topics change in this 1 web. This is a convenient service, so you do...
Hands On with files Goal: Learn to use files. Step 1 1 Create a new project `CountWordsInFile` 1 Down load EmilyDickinson1.dat. Place in new project folder...