Server IP : 172.16.15.8 / Your IP : 3.140.196.5 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/sjpruden/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// CS212 Assignment 7 // Due: Monday April 18, 2011 // File Name: assignment7.cpp // Author: Spencer Pruden // Instructor: Dr. Wang // // Goal:Modify the user defined // header files point.h and pixel.h // taught in classroom, write a program // to read a set of pixels from a file // to an object of Pixel class. Output // the coordinates and length // (one decimal place) for only // the pixel that is ON. // #include <iostream> #include <iomanip> using namespace std; #include "point.h" #include "pixel.h" int main() { Pixel px, origin; int a, b; string str; StatusType sta; cin >> a >> b >> str; if( str == "ON" ) sta = ON; while (cin) { px.Set(a, b, sta); if (str == "ON") { cout << "The length is: " << setprecision (2) << px.Distance (origin) << "\n"; cout << "The coordinates are: " << a << ", " << b << "\n\n"; } cin >> a >> b >> str; px.Set(a, b, sta); } return 0; }