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.
宿題用の簡単なコードを書いています。で定義すると、ユーザーから 3.4 という 1 つの数値を取得します。
scanf("%d",&a)
それはたった3つしかかからず、そのようにします。私は次のように定義aしました
a
int a;
私は何をすべきか?
int 変数の場合は非常に単純で、%d 書式指定子を使用し、float が必要な場合は %f 書式指定子を使用します。IEEEによると、intとfloatのビットマップ形式が異なるためです。