id stringlengths 16 145 | text stringlengths 1 179k | title stringclasses 1
value |
|---|---|---|
Entity_Framework_Core/Entity_Framework_Core_2_3.txt | soft.com/legal/intellectualproperty/Trademarks/)
* © Microsoft 2024
| |
Entity_Framework_Core/90383makinginvoicest_92_0.txt | **Popular pages** | |
Entity_Framework_Core/79723_55_0.txt | int apples = 0;
int oranges = 0;
int bananas = 0;
int totalcost = 0; | |
Entity_Framework_Core/265259_25_0.txt | if (menuChoice == 'k')
{
cout << endl; | |
Entity_Framework_Core/79723_48_0.txt | [ **Fransje** (435) ](/user/Fransje/) | |
Entity_Framework_Core/271632_84_0.txt |
I think that I got it correct but it says that it is incorrect | |
Entity_Framework_Core/265259_29_0.txt | cout << "HERE IS THE NORMAL MENU:" << endl; | |
Entity_Framework_Core/90383makinginvoicest_19_0.txt | * * * | |
Entity_Framework_Core/271632_95_0.txt | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | |
Entity_Framework_Core/271632_90_0.txt | [ **againtry** (2313) ](/user/againtry/) | |
Entity_Framework_Core/79723_33_0.txt |  Sep 22, 2012 at 7:47am UTC | |
Entity_Framework_Core/271632_54_0.txt | taxAmount = totalPrice * TAX_RATE;
cout << setw(20) << "Tax:"<< "$" << setw(10) << setprecision(2) << fixed << taxAmount << endl;
cout << setw(20) << "Amount Due:" << "$" << setw(10) << setprecision(2) << fixed << (totalPrice + taxAmount) << endl << endl;
} // end of printCheck function | |
Entity_Framework_Core/271632_31_0.txt | // constants declaration
const int MAX_ITEMS = 20;
const double TAX_RATE = 0.05; | |
Entity_Framework_Core/271632_99_0.txt |  Jul 7, 2020 at 3:06am UTC | |
Entity_Framework_Core/271632_40_0.txt | menuList[2].description = "Muffin";
menuList[2].price = 0.99;
menuList[2].quantity = 0; | |
Entity_Framework_Core/271632_109_0.txt | const int MAX_ITEMS = 20;
const double TAX_RATE = 5; | |
Entity_Framework_Core/265259_4_0.txt | ### **[ Forum ](/forum/) ** | |
Entity_Framework_Core/265259_1_0.txt | * [ TUTORIALS ](/doc/)
* [ REFERENCE ](/reference/)
* [ ARTICLES ](/articles/)
* [ FORUM ](/forum/) | |
Entity_Framework_Core/90383makinginvoicest_13_0.txt | * Linear Mode
* [ Switch to Hybrid Mode ](https://cboard.cprogramming.com/cplusplus-programming/90383-making-invoice-statement-cplusplus.html?mode=hybrid&s=764538bbbb803845784e43db87b63ad4)
* [ Switch to Threaded Mode ](https://cboard.cprogramming.com/cplusplus-programming/90383-making-invoice-statement-cplusplus-post6... | |
Entity_Framework_Core/90383makinginvoicest_47_0.txt | 937 | |
Entity_Framework_Core/90383makinginvoicest_84_0.txt | 937 | |
Entity_Framework_Core/265259_18_0.txt | void loadMenu()
{
double price; | |
Entity_Framework_Core/79723_23_0.txt |  Sep 22, 2012 at 7:12am UTC | |
Entity_Framework_Core/271632_67_0.txt | You stated that this is your input and output: | |
Entity_Framework_Core/Entity_Framework_Core_4_0.txt | Skip to main content
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security
updates, and technical support.
[ Download Microsoft Edge ](https://go.microsoft.com/fwlink/p/?LinkID=2092881
) [ More info about Internet Explorer and Microsoft Edge
](https://learn... | |
Entity_Framework_Core/271632_63_0.txt | Amount Due $6.67 | |
Entity_Framework_Core/271632_77_0.txt | Welcome to Johnny's Restaurant
----------MENU ITEMS----------
1. Plain Egg $1.45
2. Bacon and Egg $2.45
3. Muffin $0.99
4. French Toast $1.99
5. Fruit Basket $2.49
6. Cereal $0.69
7. Coffee $0.50
8. Tea $0.75
------------------... | |
Entity_Framework_Core/265259_17_0.txt | using namespace std; | |
Entity_Framework_Core/90383makinginvoicest_75_0.txt | * * * | |
Entity_Framework_Core/271632_8_0.txt | I need help with my intro to C++ assignment | |
Entity_Framework_Core/265259_36_0.txt | while (file)
{
name = eol_trim(name); | |
Entity_Framework_Core/265259_46_0.txt | loadMenu();
} | |
Entity_Framework_Core/265259_7_0.txt | ### | |
Entity_Framework_Core/79723_51_0.txt | using namespace std; | |
Entity_Framework_Core/90383makinginvoicest_80_0.txt | Kiss the monkey. [ 
](https://cboard.cprogramming.com/member.php?u=681&s=764538bbbb803845784e43db87b63ad4
"CodeMonkey is offline") | |
Entity_Framework_Core/265259_37_0.txt | cout << name << ": " << price << endl; | |
Entity_Framework_Core/79723_44_0.txt | cout << "Your total is:"<< totalcost << end1; | |
Entity_Framework_Core/Entity_Framework_Core_0_0.txt | Skip to main content
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security
updates, and technical support.
[ Download Microsoft Edge ](https://go.microsoft.com/fwlink/p/?LinkID=2092881
) [ More info about Internet Explorer and Microsoft Edge
](https://learn... | |
Entity_Framework_Core/79723_41_0.txt | int apples = 0;
int oranges = 0;
int bananas = 0;
int totalcost = 0; | |
Entity_Framework_Core/271632_57_0.txt | [ **againtry** (2313) ](/user/againtry/) | |
Entity_Framework_Core/271632_94_0.txt | [ **againtry** (2313) ](/user/againtry/) | |
Entity_Framework_Core/90383makinginvoicest_106_0.txt | By rmathus in forum C Programming | |
Entity_Framework_Core/90383makinginvoicest_86_0.txt | > "If you tell the truth, you don't have to remember anything"
> -Mark Twain | |
Entity_Framework_Core/79723_58_0.txt | cout << "Your total is:"<< totalcost << endl; | |
Entity_Framework_Core/90383makinginvoicest_87_0.txt |  | |
Entity_Framework_Core/271632_52_0.txt |
// printCheck function implementation
// This function calculates and prints the check.
// (Note that the billing amount should include a 5 % tax.)
void printCheck(MenuItem menuList[], int size)
{
double totalPrice = 0;
double taxAmount = 0; | |
Entity_Framework_Core/Entity_Framework_Core_1_2.txt | e.
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder
.UseSqlServer(@"Server=(localdb)\mssqllocaldb;Database=EFQuerying;Trusted_Connection=True;")
.ConfigureWarnings(warnings => warnings.Throw(RelationalEventId.QueryClientEva... | |
Entity_Framework_Core/271632_123_0.txt | for (int i = 0; i < size; i++)
{
if (menuList[i].quantity > 0)
{
cout
<< setw(20) << right
<< menuList[i].description
<< right << setw(6) << fixed
<< menuList[i].quantity
<< " $"
<< right << setw(6) << setprecision(2) << fixed
<< menuList[i].price
<< " $"
<< right << setw(6) << setprecision(2) << fixed
<< menuList[i]... | |
Entity_Framework_Core/79723_42_0.txt | cout<<"How many apples?\n"
cin>>apples;
cout << "How many oranges?\n"
cin>>oranges;
cout << "How many bananas?\n"
cin >>bananas; | |
Entity_Framework_Core/79723_3_0.txt | * [ Tutorials ](/doc/)
* [ Reference ](/reference/)
* [ Articles ](/articles/)
* [ Forum ](/forum/) | |
Entity_Framework_Core/90383makinginvoicest_66_0.txt |  | |
Entity_Framework_Core/90383makinginvoicest_48_0.txt | > Create some sort of data stucture to hold your information. Then write a
> function that collects the information. Then write a function that outputs
> the information.
> The code's up to you. | |
Entity_Framework_Core/271632_62_0.txt | Sub-total $6.35
Tax 5% $0.32 | |
Entity_Framework_Core/90383makinginvoicest_90_0.txt | * Site Areas
* [ Settings ](https://cboard.cprogramming.com/usercp.php?s=764538bbbb803845784e43db87b63ad4)
* [ Private Messages ](https://cboard.cprogramming.com/private.php?s=764538bbbb803845784e43db87b63ad4)
* [ Subscriptions ](https://cboard.cprogramming.com/subscription.php?s=764538bbbb803845784e43db87b63ad4)
* [ W... | |
Entity_Framework_Core/79723_61_0.txt | This does work. | |
Entity_Framework_Core/79723_39_0.txt | {
//Heading
cout << "BOB'S FRUITS GROCERY INVOICE\n";
cout <<"---------------------------------------\n"; | |
Entity_Framework_Core/271632_48_0.txt | int num;
int qty; | |
Entity_Framework_Core/79723_47_0.txt |  Sep 22, 2012 at 9:59am UTC | |
Entity_Framework_Core/271632_18_0.txt | You can make up to 8 single order selections
Do you want to make selection Y/y (Yes), N/n (No): Y | |
Entity_Framework_Core/271632_39_0.txt | menuList[1].description = "Bacon and Egg";
menuList[1].price = 2.45;
menuList[1].quantity = 0; | |
Entity_Framework_Core/90383makinginvoicest_67_0.txt | Deathray Engineer [ 
](https://cboard.cprogramming.com/member.php?u=25054&s=764538bbbb803845784e43db87b63ad4
"MacGyver is offline") | |
Entity_Framework_Core/265259_6_0.txt | * [ Forum ](/forum/)
* [ Beginners ](/forum/beginner/)
* Load Menu into Arrays, Print Menu, Get O | |
Entity_Framework_Core/90383makinginvoicest_23_0.txt | > Hey guys,
> I'm kind of in a bit of trouble. I have to make a program in C++
> (invoice.exe) that needs to calculate the total list of purchased items.
> Each purchased item needs to contain the product name, price and the
> quantity. I can do that, but the next part gets confusing, well atleast for
> me.
>
> I hav... | |
Entity_Framework_Core/271632_14_0.txt | Show the customer the different breakfast items offered by the restaurant.
Allow the customer to select more than one item from the menu.
Calculate and print the bill.
Assume that the restaurant offers the following breakfast items (the price of
each item is shown to the right of the item): | |
Entity_Framework_Core/271632_81_0.txt | --- | |
Entity_Framework_Core/79723_15_0.txt | using namespace std; | |
Entity_Framework_Core/Entity_Framework_Core_4_1.txt | d use
keyset pagination when navigation to the next/previous page, and offset
navigation when jumping to any other page.
### Multiple pagination keys
When using keyset pagination, it's frequently necessary to order by more than
one property. For example, the following query paginates by date and ID:
v... | |
Entity_Framework_Core/271632_5_0.txt | * [ **Beginners** ](/forum/beginner/)
* [ **Windows Programming** ](/forum/windows/)
* [ **UNIX/Linux Programming** ](/forum/unices/)
* [ **General C++ Programming** ](/forum/general/)
* [ **Lounge** ](/forum/lounge/)
* [ **Jobs** ](/forum/jobs/) | |
Entity_Framework_Core/90383makinginvoicest_96_0.txt | #### Similar Threads | |
Entity_Framework_Core/90383makinginvoicest_10_0.txt | * [ Show Printable Version ](https://cboard.cprogramming.com/printthread.php?t=90383&pp=15&page=1&s=764538bbbb803845784e43db87b63ad4)
* [ Email this Page… ](https://cboard.cprogramming.com/sendmessage.php?do=sendtofriend&t=90383&s=764538bbbb803845784e43db87b63ad4)
* [ Subscribe to this Thread… ](https://cboard.cprogram... | |
Entity_Framework_Core/90383makinginvoicest_37_0.txt |  | |
Entity_Framework_Core/90383makinginvoicest_64_0.txt | [ **MacGyver**
](https://cboard.cprogramming.com/member.php?u=25054&s=764538bbbb803845784e43db87b63ad4
"MacGyver is offline") | |
Entity_Framework_Core/90383makinginvoicest_108_0.txt | Last Post: 11-29-2003, 03:24 PM | |
Entity_Framework_Core/90383makinginvoicest_63_0.txt | 5. 05-30-2007 [ #5 ](https://cboard.cprogramming.com/cplusplus-programming/90383-making-invoice-statement-cplusplus-post647510.html?s=764538bbbb803845784e43db87b63ad4#post647510) | |
Entity_Framework_Core/90383makinginvoicest_81_0.txt | * * * | |
Entity_Framework_Core/79723_38_0.txt | int main () | |
Entity_Framework_Core/79723_34_0.txt | [ **sillymonkey** (5) ](/user/sillymonkey/) | |
Entity_Framework_Core/271632_120_0.txt | menuList[num - 1].quantity += qty;
}
else
{
cout << "Invalid item number!\n";
}
}
} | |
Entity_Framework_Core/79723_57_0.txt | totalcost= apples * APPLE_COST + oranges * ORANGE_COST + bananas * BANANA_COST; | |
Entity_Framework_Core/271632_53_0.txt | cout << "\nYour Bill..." << endl;
cout << endl << "Welcome to Johnny's Restaurant" << endl;
for (int i = 0; i < size; i++)
{
if (menuList[i].quantity > 0)
{
cout << left << setw(20) << menuList[i].description << "$" << setw(10) << setprecision(2) << fixed << menuList[i].price << endl;
totalPrice += menuList[i].price;
}... | |
Entity_Framework_Core/79723_18_0.txt | cout<<"How many apples?" << end1;
cin>>apples;
cout << "How many oranges?" << end1;
cin>>oranges;
cout << "How many bananas?" <<end1;
cin >>bananas; | |
Entity_Framework_Core/271632_3_0.txt | * [ Tutorials ](/doc/)
* [ Reference ](/reference/)
* [ Articles ](/articles/)
* [ Forum ](/forum/) | |
Entity_Framework_Core/79723_11_0.txt | This is a homework question I am a complete beginner when it comes to coding
and i was wondering you could help me start my code for my assignment.
i have to code an invoice that will come out like this
I just want to know how to start the math portion | |
Entity_Framework_Core/265259_26_0.txt | cout << "HERE IS THE KIDS MENU:" << endl; | |
Entity_Framework_Core/79723_28_0.txt | cout << "How many apples? "
cin >> apples;
cout << "How many limited edition star wars action figures? "
cin >> leswaf; | |
Entity_Framework_Core/271632_91_0.txt | line 108:
menuList[num - 1].quantity = 1; | |
Entity_Framework_Core/271632_45_0.txt | menuList[7].description = "Tea";
menuList[7].price = 0.75;
menuList[7].quantity = 0; | |
Entity_Framework_Core/90383makinginvoicest_117_0.txt | By Curacao in forum C++ Programming | |
Entity_Framework_Core/271632_64_0.txt |  Jul 7, 2020 at 2:21am UTC | |
Entity_Framework_Core/271632_61_0.txt | Welcome to Johnny's Resturant
Plain Egg 1 $1.45 $1.45
Bacon and Egg 2 $2.45 $4.90 | |
Entity_Framework_Core/90383makinginvoicest_49_0.txt | > "If you tell the truth, you don't have to remember anything"
> -Mark Twain | |
Entity_Framework_Core/90383makinginvoicest_44_0.txt | * * * | |
Entity_Framework_Core/265259_11_0.txt | We learned about arrays for less than an hour and our professor wants us to
write an ordering system that is divided up into several smaller functions
that: | |
Entity_Framework_Core/90383makinginvoicest_7_0.txt | 1. [ Getting started with C or C++ ](http://www.cprogramming.com/begin.html?mb=unreg) | [ C Tutorial ](http://www.cprogramming.com/tutorial/c-tutorial.html?mb=unreg-c) | [ C++ Tutorial ](http://www.cprogramming.com/tutorial/c++-tutorial.html?mb=unreg-cpp) | [ C and C++ FAQ ](http://faq.cprogramming.com/cgi-bin/smartfaq... | |
Entity_Framework_Core/79723_36_0.txt | #include <iomanip> | |
Entity_Framework_Core/271632_125_0.txt | taxAmount = round(totalPrice * TAX_RATE) / 100; | |
Entity_Framework_Core/90383makinginvoicest_26_0.txt | 2. 05-30-2007 [ #2 ](https://cboard.cprogramming.com/cplusplus-programming/90383-making-invoice-statement-cplusplus-post647469.html?s=764538bbbb803845784e43db87b63ad4#post647469) | |
Entity_Framework_Core/271632_100_0.txt | [ **againtry** (2313) ](/user/againtry/) | |
Entity_Framework_Core/271632_96_0.txt | cout << "\nYour Bill..." << endl;
cout << endl << "Welcome to Johnny's Restaurant" << endl;
for (int i = 0; i < size; i++)
{
if (menuList[i].quantity > 0)
{
cout
<< left << setw(20) << menuList[i].description
<< setw(10) << setprecision(2) << fixed
<< menuList[i].quantity << " $" << menuList[i].price
<< " $" << menuL... | |
Entity_Framework_Core/271632_89_0.txt |  Jul 7, 2020 at 2:41am UTC |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.