#include <stdio.h> #include <math.h> #define MPI 3.14159265358979323846 int main(void) { double y; y = sin(60.0 * MPI / 180.0); printf("60°のサイン値 = %f\n", y); return 0; }【実行結果】
60°のサイン値 = 0.866025
▼戻る▼
「初心者のためのポイント学習C言語」 Copyright(c) 2000-2004 TOMOJI All Rights Reserved