카타 8급 Third Angle of a Triangle

1 C++[ | ]

class Triangle {
public:
  static int otherAngle(int a, int b) {
    return 180 - a - b;
  }
};

2 R[ | ]

other_angle <- function(a, b){
  180-a-b
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}