code to explanationThu, 29 Feb 2024

напиши скрип для расчета кубического уравнения

ub(a, b, c): return a * a * a + b * b * b + c * c * c def main(): n = int(input()) for i in range(n): a, b, c = map(int, input().split()) print(cub(a, b, c)) if __name__ == '__main__':

Want to kickstart your project?Use the new AI Studio to create your code