-->
当前位置:首页 > 题库

单选题:Which of the following statements correctly rotates the button 4

Luz5年前 (2021-05-10)题库767
Which of the following statements correctly rotates the button 45 degrees counterclockwise? @[B](2)
A. button.setRotate(-45);
B. button.setRotate(360 - 45);
C. button.setRotate(Math.toRadians(45));
D. button.setRotate(45);





A.button.setRotate(-45);
B.button.setRotate(360 - 45);
C.button.setRotate(Math.toRadians(45));
D.button.setRotate(45);


答案:B