(10%)
Determine whether the following code is correct or not. If it is
correct, predict its output. If it is incorrect, point out the
mistake(s).
// MATH Functions
#include <iostream>
#include <cmath>
using std::cout;
using std::endl;
int main()
{
cout << pow( 729.0, 1.0/6.0 ) << endl;
cout << ceil( -3.5) << endl;
cout << floor( -3.5) << endl;
return 0;
}