CS201 Assignment1 Solution 5

No Comments
#include <iostream>
//<stdlib.h> for system pause;
#include <stdlib.h>

main()
{
//Declaring the variable;
int x1,x2,y1,y2;
float dy,dx,slope;
//Enter the value of satarting and ending point on x-axis and y-axis;
cout"Enter the X-Cordinate of the starting point=";
cin>>x1;
cout"Enter the Y-Cordinate of the starting point=";
cin>>y1;
cout"Enter the X-Cordinate of the ending point=";
cin>>x2;
cout"Enter the Y-Cordinate of the ending point=";
cin>>y2;
//calculate difference b/w x2 and x1;
dx=(x2-x1);
//calculate difference b/w y2 and y1;
dy=(y2-y1);
//calculate slope;
slope=(dy)/(dx);
if(dx==0)
{cout"Line is parallel to Y-Cordinate"endl;
}
else
{if(dy==0)
cout"Line is parallel to X-Corndinate"endl;
}
if(slope>1)
{cout"Line will travel more along Y-Axis and less along X-Axis"endl;
}
else
if(slope<1)
{cout"Line will travel more along X-Axis and Less along Y-Axis"endl;
}
if(slope==1)
{cout"Line will make the 45 degree angle with horizon"endl;
}
system("Pause") ;
}

Next PostNewer Post Previous PostOlder Post Home

0 comments

Post a Comment