Skip to content

alexako/CS127L

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CS127L

Useful snippets of code available in snippets directory

Solutions and logs of the Programming Exercises for CS127 lab

Exercise 1 - ATM Simulator

  • Straight forward implementation of concepts taught in class
  • Found out '%' can only be used for ints
  • Need to use fmod() from math.h for doubles

Exercise 2 - Cramer's Rule and Frequency

  • The order of parameters processed is last to first foo(last, next, first). So, I assigned variables to store the return values to process the deter functions in correct order.
  • Not sure if x and y values should be accurately rounded to next whole number, some decimal point, or truncated as an int.

Exercise 3 - Miles Per Gallon and Sort Array using Pointers

  • Miles Per Gallon was another straight forward implementation of class lectures
  • Used Insertion sort but problem stated values should be processed in sorted order

Exercise 4 - Strings

  • Palindrome was easy. Iterated through string from the start and end while testing if equivalent.
  • Used pointer array to count letters of string
  • Typecast string char to char in order to use tolower()/toupper()
  • Problem with sleep() function. Not working at all.
  • password() and EnterPassword() are using curses.h. Need to use windows.h for lab.
  • iostream does not work with curses.h. Used printw() instead. Need to change back after testing.

About

C++ Programming Exercises for CS127 lab class

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages