Expected results for test: P3-22.pl460 P3-22.pl460 : (define (main) (display (/ 5 2)) (newline) (display (/ 3.0 1.5)) (newline) ) (main) Input file: P3-22.pl460 0 errors found in input file P3-22.cpp : // Autogenerated PL460 to C++ Code // File: P3-22.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; return 0; } PL460 program output: 5/2 2.0 C++ program output: 5/2 2.0 Differences: < pl460 | cpp > 5/2 5/2 2.0 2.0