Challenge: Basic Type Conversion
Task
Swipe to start coding
You will calculate the total weight of an order, including the weight of individual items and their packaging, and then convert the total weight to an integer.
- Inside the method, calculate the total weight of all items by multiplying the weight of one item by the total number of items.
- Calculate the total packaging weight by multiplying the packaging weight per item by the total number of items.
- Add the items' weight and the total packaging weight to get the total order weight.
- Convert the total weight from a double to an integer using
Convert.ToInt32to show a rounded whole number. - Print all relevant information to the console, including the weight of a single item, the packaging weight per item, the number of items, the total weight as a double, and the total weight as an integer.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 14
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 1.67
Challenge: Basic Type Conversion
Swipe to show menu
Task
Swipe to start coding
You will calculate the total weight of an order, including the weight of individual items and their packaging, and then convert the total weight to an integer.
- Inside the method, calculate the total weight of all items by multiplying the weight of one item by the total number of items.
- Calculate the total packaging weight by multiplying the packaging weight per item by the total number of items.
- Add the items' weight and the total packaging weight to get the total order weight.
- Convert the total weight from a double to an integer using
Convert.ToInt32to show a rounded whole number. - Print all relevant information to the console, including the weight of a single item, the packaging weight per item, the number of items, the total weight as a double, and the total weight as an integer.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 14
single