diff --git a/.gitignore b/.gitignore index ec5dd94..e232f74 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,6 @@ # VSC .vscode + +# build +build diff --git a/build/pizza b/build/pizza deleted file mode 100755 index f6559e7..0000000 Binary files a/build/pizza and /dev/null differ diff --git a/build/sheet0 b/build/sheet0 deleted file mode 100755 index ea413de..0000000 Binary files a/build/sheet0 and /dev/null differ diff --git a/build/sheet01 b/build/sheet01 deleted file mode 100755 index 45423fd..0000000 Binary files a/build/sheet01 and /dev/null differ diff --git a/src/pizza.cpp b/src/pizza.cpp index e8e13c3..e45a3ff 100644 --- a/src/pizza.cpp +++ b/src/pizza.cpp @@ -17,19 +17,19 @@ int main() //std::cout << "Please specify the price of a single pizza in cents: "; //std::cin >> price_single; - std::cout << "Please specify the diameter of a single Pizza in cm: "; + std::cout << "Please specify the diameter of a single pizza in cm: "; std::cin >> diameter_single; //std::cout << "Please specify the price of a family pizza in cents: "; //std::cin >> price_family; - std::cout << "Please specify the diameter of a family Pizza in cm: "; + std::cout << "Please specify the diameter of a family pizza in cm: "; std::cin >> diameter_family; area_single = pi*diameter_single*diameter_single/4; area_family = pi*diameter_family*diameter_family/4; family_to_single_quotient = area_family/area_single; - std::cout << "The Family Pizza has " << family_to_single_quotient << " times more area than a single pizza.\n"; + std::cout << "The family pizza has " << family_to_single_quotient << " times more area than a single pizza.\n"; std::cout << "Please specify the amount of each variety.\n Enter \"DONE\" in caps to finish.\n"; while(ordering)