Question

Draw flowchart AND write pseudo code A large pizza is composed of eight slices. Create a...

Draw flowchart AND write pseudo code

A large pizza is composed of eight slices. Create a program that will print out the amount of slices each person may have.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
FLOW CHART
==========
START VOLUME = INPUT PIZZA VOLUME PERSON_SHARE = VOLME/8.0 OUTPUT “PERSON_SHARE END

===========
PSEUDO CODE
===========

volume = INPUT( "ENTER PIZZA VOLUME")

volume_per_person = volume/8

OUTPUT "VOLUME OF PIZZA EACH PERSON WILL GET", volume_per_person 


=================
Program in Python
=================
pizza_volume = float(input('Enter total volume of pizza: '))
pizza_per_person=pizza_volume/8
print('Each person will have',pizza_per_person,'volume of pizza')

OUTPUT

1: Proje pizza_volume = float(input(Enter total volume of pizza: )) pizza_per_person=pizza_volume/8 print(Each person will

Add a comment
Know the answer?
Add Answer to:
Draw flowchart AND write pseudo code A large pizza is composed of eight slices. Create a...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Draw flowchart AND write pseudo code The retail store wants a program that will print out...

    Draw flowchart AND write pseudo code The retail store wants a program that will print out the profit for the day. They will enter how much money in the drawer at the end of each day along with the total amount spent for business costs. The difference is the profit.

  • guys can you please help me to to write a pseudo code for this program and...

    guys can you please help me to to write a pseudo code for this program and write the code of the program in visual studio in.cpp. compile the program and run and take screenshot of the output and upload it. please help is really appreciated. UTF-8"CPP Instruction SU2019 LA X 119SU-COSC-1436- C Get Homework Help With Che X Facebook -1.amazonaws.com/blackboard.learn.xythos.prod/584b1d8497c84/98796290? response-content-dis 100% School of Engineering and Technology COSC1436-LAB1 Note: in the instruction of the lab change "yourLastName" to your last...

  • write code in c++, run/load & provide output NOTE: you need to do either a flowchart...

    write code in c++, run/load & provide output NOTE: you need to do either a flowchart or some sort of pseudo code for this. It is recommended that you do this BEFORE you start to write your code. Ifyou have some idea of exactly what you want to do you will have a better chance of success. You can bring your flowchart/pseudo code to me for checking before you begin coding QUANTUM CORP LESS THAN TEN REPORT You own four...

  • Write a python program where you create a list (you an create it in code you...

    Write a python program where you create a list (you an create it in code you do not have to use input() statements) that represents the total rainfall for each of 12 months (assume that element 0 is January and element 11 is December). The program should calculate and display the: 1) total rainfall for the year; 2) the average monthly rainfall; 3) the months with the highest and lowest amounts. You need to figure out how to access each...

  • Write detailed pseudo code for a program that is designed to organize a family's tax payments...

    Write detailed pseudo code for a program that is designed to organize a family's tax payments for the past 20 years. Prompt the user for the tax amount and also the year. Use appropriate data structure to store the tax amount and the year. Use a linear search algorithm to determine which year the family paid the highest tax, and display the result. Calculate the average amount of tax paid over the years, and display the result. This is for...

  • Create a complete pseudo-code program in C++ to do the following using the PseudoCode language developed...

    Create a complete pseudo-code program in C++ to do the following using the PseudoCode language developed in class using Absolute Addressing. There is 1 deliverable: 1. You should include the input cards shown below as a test. THE PROGRAM: First you will read in a value N which holds the number of values to be read in. (so if N is 20 then there will be 20 more cards to read in.) Read in N values into an array. Bubble-Sort...

  • Java Program (PLEASE PROVIDE SCREENSHOT OF THE CODE) Create a class Person which is a super...

    Java Program (PLEASE PROVIDE SCREENSHOT OF THE CODE) Create a class Person which is a super class. The class includes four private String instance variables: first name, last name, social security number, and state. Write a constructor and get methods for each instance variable. Also, add a toString method to print the details of the person. After that create a class Teacher which extends the class, Person. Add a private instance variable to store number of courses. Write a constructor...

  • Java Eclipse program Write statements to declare and initialize eight constants, one for each of the...

    Java Eclipse program Write statements to declare and initialize eight constants, one for each of the primitive types in Java. boolean, byte, char, short, int, long, float and double. Add statements to print the name of the constant and its value to your VariableDefinitions.javaprogram and compile the program. Assign a new value to one of the constants and compile. Comment out the lines of code that cause compilation errors but do not delete them and recompile your program.

  • Write code in Java programming language. The ShoppingCart class will be composed with an array of...

    Write code in Java programming language. The ShoppingCart class will be composed with an array of Item objects. You do not need to implement the Item class for this question, only use it. Item has a getPrice() method that returns a float and a one-argument constructor that takes a float that specifies the price. The ShoppingCart class should have: Constructors: A no-argument and a single argument that takes an array of Items. Fields: • Items: an array of Item objects...

  • Create a new program in Mu and save it as ps2.3.3.py Take the code below and...

    Create a new program in Mu and save it as ps2.3.3.py Take the code below and fix it as indicated in the comments: busy = True hungry = False tired = True stressed = False # You may modify the lines of code above, but don't move them! # Your code should work with different values for the variables. # Logical operators get more complex when we start using them # with the results of other logical operators. So, let's...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT