Translate

Friday 26 April 2013

SOLVED ASSIGNMENT CS201


Assignment No. 01
Semester: Spring 2013
CS201: Introduction to Programming
Total Marks: 20

Due Date:02/05/2013
           
Introduction to Programming
Instructions:
Please read the following instructions carefully before submitting assignment. It should be clear that your assignment will not get any credit if:

The assignment is submitted after due date.
The submitted assignment does not open or file is corrupt.
Assignment is copied(partial or full) from any source (websites, forums, students, etc)

Note: You have to upload only .cpp file. Assignment in any other format (extension) will not be accepted and will be awarded with zero marks. For example, if you submit code in .doc (Word document) or .txt files or .exe file, no reward will be given in any case.


Objective:
The objective of this assignment is to provide hands on experience of:
Basic concepts of C/C++ language and Programming
Dealing with Data types
Conditional statements of C/C++ language
Expressions
Saving a program
Compiling a program
Executing the program
Guidelines:
Code should be properly indented and well commented.
Follow C/C++ rules while writing variable names, function names etc
Use only dev-C++ for this assignment.



Problem Statement:    
Write the C++ language program to calculate the slope of the line that is passing through two points and displays one of the following five messages according to the nature of the slope.

Message No
Description
1
Line will make the 45 degree angle with the horizon
2
Line will travel more along X-Axis and Less along Y-Axis
3
Line will travel more along Y-Axis and Less along X-Axis
4
Line is parallel to Y-Axis.
5
Line is parallel to X-Axis.

Detailed Description:

Your program will ask for the two inputs for the starting point P1(x1,y1) of the line i.e. X-Coordinate and
Y-Coordinate, and two inputs for the ending point P2(x2,y2) of the line i.e. X-Coordinate and Y-Coordinate.
Formula to calculate the slope of the line is
Slope = difference between y coordinates/difference between x coordinates
Slope can be one of the following five types depending upon its value.
Slope=1
            Line will make the 45 degree angle with the horizon
Slope<1
             Line will travel more along X-Axis and Less along Y-Axis
Slope>1
               Line will travel more along Y-Axis and Less along X-Axis
Your program should have a check for the value of difference between X coordinates of the two points i.e. dx. In case difference between x coordinates is zero then slope should not be calculated in your program and following message should be displayed.
              Line is parallel to Y-Axis.
Your program should have a check for the value of difference between Y coordinates of the two points i.e. dy.  In case if the difference between y coordinates is zero then following message should be displayed.
               Line is parallel to X-Axis.
For example Consider a line which passes through two points p1(10, 10) and p2(20, 18).
Your program should ask for X-coordinate of the starting point i.e. 10
Then it should prompt for the Y-coordinate of the starting point i.e.  10
Similarly your program will ask for the X and Y-coordinates of the ending point of the line i.e. 20 and 18 respectively.
Now difference between y coordinates is dy =  = 18 – 10 = 8
Whereas difference between x coordinates is dx =  = 20 – 10 = 10
Then message should be displayed according to the nature of the slope of the line.  In this case following message will be displayed.
 Line shall travel more along X-axis and Less along Y-axis.
Sample run of the program:


No comments:

Post a Comment