Lab 03 - Assert
Thanks for my Lab Tutor Zhang Puyu!
Exercise 1 Review
Code Style
// Not Recommended
double num;
num = cs1010_read_double();
// Recommended
double num = cs1010_read_double();No return after else
No nested If
Assert Library
Usage
Exercise 1 Further Discussion
odd.c
The Deriving process

multiple.c
date.c
power.c
Ways to optimize
taxi.c
A normal way to compute ceil()
A smart way to compute ceil()
Last updated