Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assignment #1 Introduction to C Programming COP 3223 Objectives 1. To give students practice at typing in, compiling and running simple programs. 2. To learn

Assignment #1

Introduction to C Programming COP 3223

Objectives

1. To give students practice at typing in, compiling and running simple programs.

2. To learn how to read in input from the user.

3. To learn how to use assignment statements and arithmetic expressions to make calculations

Introduction: Who doesnt love dragons?

Movies about dragons and dragon training were very popular this summer. Your friend has not stopped talking about how awesome dragons are and how cool it would be to train them. To amuse your friend, you have decided to create a series of programs about dragons.

Problem: Dragon Feeding (dragonfeeding.c)

Everyone knows that dragons hatch from eggs and need lots of meat to grow into full sized riding dragons. In this program, we will calculate how many sheep we will need for our new dragon for this month.

You will need to ask the user for the weight of the dragon in pounds. You can then determine the number of grams of protein he or she will need each day using the following formula:

Weight in pounds / 2.2 * 1.5

If each sheep on Dragon Island has 200g of protein, determine how many sheep will be necessary for the month (30 days) and print this information to the user.

Input Specification

1. The weight will be a positive integer.

Output Specification

Output the number of sheep as a whole number using the format below:

You will need X sheep for your new dragon!

Output Sample

Below are some sample outputs of running the program. Note that these samples are NOT a comprehensive test. You should test your program with different data than is shown here based on the specifications given above. In the sample run below, for clarity and ease of reading, the user input is given in italics while the program output is in bold. (Note: When you actually run your program no bold or italics should appear at all. These are simply used in this description for claritys sake.)

Sample Run #1

How much does your dragon weigh?

50

You will need 6 sheep for your new dragon!

Sample Run #2

How much does your dragon weigh?

22

You will need 3 sheep for your new dragon!

Deliverables

One source file dragonfeeding.c is to be submitted over WebCourses.

Restrictions

Although you may use other compilers, your program must compile and run using Code::Blocks. Your program should include a header comment with the following information: your name, course number, section number, assignment title, and date. Also, make sure you include comments throughout your code describing the major steps in solving the problem.

Grading Details

Your programs will be graded upon the following criteria:

1) Your correctness

2) Your programming style and use of white space. Even if you have a plan and your program works perfectly, if your programming style is poor or your use of white space is poor, you could get 10% or 15% deducted from your grade.

3) Compatibility You must submit C source files that can be compiled and executed in a standard C Development Environment. If your program does not compile, you will get a sizable deduction from your grade.

Please show coding. thanks

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions