Skip to content

Instantly share code, notes, and snippets.

View quindariuss's full-sized avatar
🍊

Quin'darius Lyles-Woods quindariuss

🍊
View GitHub Profile
@quindariuss
quindariuss / Preconditons and Postconditions.cpp
Created October 16, 2019 16:11
Pre and Post conditions for funtion in the <cmath> library.
//Pre-Condition: Enter any real number 'x'.
double sqrt(double x)
//Post-Condition: The function will return 'x' sqaured.
@quindariuss
quindariuss / Assert Statement.cpp
Created October 16, 2019 16:03
Checks if var month is a real month.
#include iostream
using namespace std;
int main{
int dateCheck(int year, int month, int day){
assert(0 < month ≤ 12)
}
}