lect01 Slides | Next Lecture |
Code From Class
- https://github.com/ucsb-cs16-su17/code-from-class
- under the “Lec01” folder
Topics
- Introduction to C++
- Variables, types, and initialization
- Abstraction is important!
- It’s how we handle complexity
- C++ is an abstraction over assembly language, 1s and 0s, electrons, etc.
- It allows us to get pretty close to talking to a computer using English and Math
- Command-line arguments
- Input/Output
- Intro to FizzBuzz