Expected results for test: P3-02.pl460 P3-02.pl460 : (define (main) (display 1/5) (newline) (display -1/1) (newline) (display 56/21) (newline) (display 314/159) (newline) (display -3/5) (newline) ) (main) Input file: P3-02.pl460 0 errors found in input file P3-02.cpp : // Autogenerated PL460 to C++ Code // File: P3-02.cpp #include #include "Object.h" using namespace std; int main () { Object __RetVal; cout << Object("1/5"); cout << endl; cout << Object("-1/1"); cout << endl; cout << Object("56/21"); cout << endl; cout << Object("314/159"); cout << endl; cout << Object("-3/5"); cout << endl; return 0; } PL460 program output: 1/5 -1 8/3 314/159 -3/5 C++ program output: 1/5 -1 8/3 314/159 -3/5 Differences: < pl460 | cpp > 1/5 1/5 -1 -1 8/3 8/3 314/159 314/159 -3/5 -3/5