Skip to content

Instantly share code, notes, and snippets.

@IHolzman
IHolzman / Slope
Last active December 11, 2015 10:38
#include <iostream>
//This program is used to calculate the slope of the line
//C++
using namespace std;
int main(){
std::cout << "This is used to find the slope of the line. Please enter two points.\n";
float y1, y2, x1, x2;
std::cout << "Enter Y 1";