-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathrecipe.cpp
56 lines (45 loc) · 2.11 KB
/
recipe.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//*****************************************************************************************************
// Chocolate Chip Cookies Recipe
//
// This program is a simple recipe for making Chocolate Chip Cookies.
//
//*****************************************************************************************************
#include <iostream>
using namespace std;
//*****************************************************************************************************
int main() {
cout << "Chocolate Chip Cookies - 4 dozen cookies" << endl;
cout << "\n\t1 cup butter\n"
<< "\t1 1 / 2 cups white sugar\n"
<< "\t2 eggs\n"
<< "\t2 tsp vanilla extract\n"
<< "\t2 cups all-purpose flour\n"
<< "\t3 / 4 baking soda\n"
<< "\t1 / 4 tsp salt\n"
<< "\t2 cups chocolate chips" << endl;
cout << "\nPreheat oven to 350 F. In a large bowl, mix butter, sugar, eggs, and vanilla\n"
<< "until light and fluffy. In a separate bowl, combine flour, baking soda, and\n"
<< "salt; stir into the butter mixture until well-blended stir in chocolate chips.\n"
<< "Drop by rounded teaspoons onto ungreased cookie sheets. Bake 8-10 minutes until\n"
<< "just set. Cool slightly on cookie sheets before transferring to cooling racks\n"
<< "to cool completely." << endl;
return 0;
}
//*****************************************************************************************************
/*
Chocolate Chip Cookies - 4 dozen cookies
1 cup butter
1 1 / 2 cups white sugar
2 eggs
2 tsp vanilla extract
2 cups all-purpose flour
3 / 4 baking soda
1 / 4 tsp salt
2 cups chocolate chips
Preheat oven to 350 F. In a large bowl, mix butter, sugar, eggs, and vanilla
until light and fluffy. In a separate bowl, combine flour, baking soda, and
salt; stir into the butter mixture until well-blended stir in chocolate chips.
Drop by rounded teaspoons onto ungreased cookie sheets. Bake 8-10 minutes until
just set. Cool slightly on cookie sheets before transferring to cooling racks
to cool completely.
*/