Expected results for test: P3-24.pl460 P3-24.pl460 : (define (main) (display (+ 5 2)) (newline) (display (+ 3.0 1.5)) (newline) (display (- 5 2)) (newline) (display (- 3.0 1.5)) (newline) (display (* 5 2)) (newline) (display (* 3.0 1.5)) (newline) (display (/ 5 2)) (newline) (display (/ 3.0 1.5)) (newline) (display (modulo 5 2)) (newline) (display (modulo 03 7)) (newline) (display (round 5.2)) (newline) (display (round 03.7)) (newline) ) (main) Input file: P3-24.pl460 0 errors found in input file P3-24.cpp : // Autogenerated PL460 to C++ Code // File: P3-24.cpp #include #include "Object.h" using namespace std; int main () { Object __RetVal; cout << (Object("5") + Object("2")); cout << endl; cout << (Object("3.0") + Object("1.5")); cout << endl; cout << (Object("5") - Object("2")); cout << endl; cout << (Object("3.0") - Object("1.5")); cout << endl; cout << (Object("5") * Object("2")); cout << endl; cout << (Object("3.0") * Object("1.5")); cout << endl; cout << (Object("5") / Object("2")); cout << endl; cout << (Object("3.0") / Object("1.5")); cout << endl; cout << (Object("5") % Object("2")); cout << endl; cout << (Object("03") % Object("7")); cout << endl; cout << round (Object("5.2")); cout << endl; cout << round (Object("03.7")); cout << endl; return 0; } PL460 program output: 7 4.5 3 1.5 10 4.5 5/2 2.0 1 3 5.0 4.0 C++ program output: 7 4.5 3 1.5 10 4.5 5/2 2.0 1 3 5.0 4.0 Differences: < pl460 | cpp > 7 7 4.5 4.5 3 3 1.5 1.5 10 10 4.5 4.5 5/2 5/2 2.0 2.0 1 1 3 3 5.0 5.0 4.0 4.0