6. Given the following pseudocode, write a program that executes it. Use floating-point types for all values. Algorithm
Posted: Thu Jul 14, 2022 2:27 pm
6. Given the following pseudocode, write a program that executes it. Use floating-point types for all values. Algorithm Problem26 1 read x 2 read y 3 compute p=x∗y 4 compute s=x+y 5 total =s2+p⋆(s−x)∗(p+y) 6 print total End Problem 26