Write a program to test the statements as the previous slide.
▪ Revise the program change this statement
▪ int x = 5 * (3 / 2); —> int x = 5 * 3 / 2;
▪ Verify if the result from both programs are similar
▪ From both programs they give wrong answers, can you fix this error?