Menu
×
×
正确
@(3) x = 5@(1) y = 6@(1) z = 50;
cout << x + y + z;
int x = 5, y = 6, z = 50;
cout << x + y + z;
不正确
点击 此处 重试 正确
下一题 ❯w3exercise_input_no_0x = 5w3exercise_input_no_1y = 6w3exercise_input_no_2z = 50; cout << x + y + z; |