Which type оf musculаr tissue is respоnsible fоr the involuntаry, wаvelike contractions that move food through the digestive tract?
Cоmputer Lаb Upgrаde Cоst Estimаtоr Application Name: FLastnameChartingI2Description: Write a C program that calculates the total cost of new lab equipment. Include comments throughout. Note: The sample output shown below is for illustrative purposes only and cannot be used as data for your application. You should come up with your own Name, items and prices. Requirements: School Name The program should use constants for the prices of three different types of computer equipment needed in the classroom (printers, monitors, computers, etc.) and a delivery cost of 20%. The user will input the quantity of each type of equipment they wish to purchase. The program should then calculate: The total cost for each type of equipment (cost per unit × quantity). The subtotal (sum of all equipment costs). The delivery cost (calculated as subtotal * 20%). The final total (subtotal + delivery cost). The program should display a formatted estimate (lined up properly and all monetary values should be displayed in currency format (dollar sign and 2 decimal places)) that includes: School Name Equipment Costs Subtotal Delivery Cost Total Cost Sample Output ============================================ Computer Lab Upgrade ============================================Item Qty Price Total --------------------------------------------Desktop PC 3 $899.99 $2,699.97Monitor (24") 3 $199.99 $599.97 Keyboard 3 $49.99 $149.97 --------------------------------------------Subtotal: $3,449.91Delivery (20%): $689.98 --------------------------------------------Total Amount Due: $4,139.89
Cоding Operаtоrs Applicаtiоn Nаme: FLastnameChartingI3Description: Write a C program that takes an integer input from the user and determines: If the number is greater than 10 or not greater than 10. If the number is even or odd. If the number is evenly divisibly by 3 and 4 or not evenly divisibly by 3 and 4. (A number is evenly divisible by another if the division leaves no remainder.). Use the ternary conditional operator (? 🙂 and incorporate logical operators (&&, ||, !) where appropriate. . Include comments throughout. Requirements: Get input from user Use conditional operator with relational statements to do #1 and #2 above. Use conditional operator with relational statements and a logical operator to do # 3 above. The input/output should be similar to the following: Example 1 Input Enter an integer User enters 36 Output Greater than 10 Even Evenly divisible by 3 and 4 Example 2 Input Enter an Integer User enters -7 Output Not greater than 10 Odd Not evenly divisible by 3 and 4