Expected results for test: P3-23.pl460 P3-23.pl460 : (define (main) (display (modulo 5 2)) (newline) (display (modulo 03 7)) (newline) (display (round 5.2)) (newline) (display (round 03.7)) (newline) ) (main) Input file: P3-23.pl460 0 errors found in input file P3-23.cpp : // Autogenerated PL460 to C++ Code // File: P3-23.cpp #include #include "Object.h" using namespace std; int main () { Object __RetVal; 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: 1 3 5.0 4.0 C++ program output: 1 3 5.0 4.0 Differences: < pl460 | cpp > 1 1 3 3 5.0 5.0 4.0 4.0