Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はAppleのMac用IDEであるXcodeでCプログラミングを行っており、BigNerdRanchのObjectiveCプログラミングブックのガイドに従っています。課題の1つは、Cのライブラリを使用して1ラジアンの正弦を表示することです。math.hをインポートして実行しました
double sin = sin(3.14);
しかし、それは私にエラーを与えています。
1ラジアンは円周率ではなく1です。
関数名である変数名は使用できません。
あなたが欲しい
double myValue = sin(1.0);
変数に関数と同じ名前を付けないでください。
試す
double s = sin(3.14);