CODY Contest 2020 MATLAB Onramp Practice 全15题第一题 Problem 1. Times 2 - START HERE 第二题 Problem 44943. Calculate Amount of Cake Frosting第三题 Problem 44944. Convert from Fahrenheit to Celsius第四题 Problem 44947. Find the Oldest Person in a Room第五题 Problem 4
第一题Problem 1. Times 2 - START HERETry out this test problem first.Given the variable x as your input, multiply it by two and put the result in y.Examples:Input x = 2Output y is 4Input x = 17Output y is 34返回输入值的二倍function y = ti...