Notes From CS Undergrad Courses FSU
This project is maintained by awa03
void calcPrice(cart){
for(int i =0; i < cart.length){
if(cart[i].catagory == "food")
// etc
}
// Rather than doing this we should move these to a function
for(int i =0; i < cart.length){
total += calcPrice;
// etc
}
// Bad example
for(auto j: auto k){if(j == 1){return false}}