카타 8급 Pole Vault Starting Marks

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:48 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

C++[ | ]

#include <cmath>
double startingMark(double bodyHeight)
{
  double a = (10.67 - 9.45) / (1.83 - 1.52);
  double b= 10.67 - a * 1.83;
  return round(100 * (bodyHeight * a + b)) / 100;
}
#include <cmath>
double startingMark(double bodyHeight)
{
  double a = (10.67 - 9.45) / (1.83 - 1.52);
  return round((a * bodyHeight + 10.67 - a * 1.83) * 100) / 100;
}
#include <cmath>
double startingMark(double bodyHeight)
{
    return round(100*(3.935483871*bodyHeight+3.468064516))/100;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}