Expected results for test: P3-26.pl460 P3-26.pl460 : (define (main) (display (* 5 2 -1 5)) (newline) (display (* 5.3 2.12 -1.5 5.9)) (newline) ) (main) Input file: P3-26.pl460 0 errors found in input file P3-26.cpp : // Autogenerated PL460 to C++ Code // File: P3-26.cpp #include #include "Object.h" using namespace std; int main () { Object __RetVal; cout << (Object("5") * Object("2") * Object("-1") * Object("5")); cout << endl; cout << (Object("5.3") * Object("2.12") * Object("-1.5") * Object("5.9")); cout << endl; return 0; } PL460 program output: -50 -99.43860000000001 C++ program output: -50 -99.4386 Differences: < pl460 | cpp > -50 -50 -99.43860000000001 | -99.4386