Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- int main() {
- // Write a for loop here:
- for (int bottle = 99; bottle > 0; bottle--){
- std::cout << bottle << " bottles of pop on the wall.\n";
- std::cout << "Take one down and pass it around.\n";
- std::cout << bottle - 1 << " bottles of pop on the wall.\n";
- }
- }
Add Comment
Please, Sign In to add comment