#質問
ドル金額を入力し、18% の税金を加算して金額を表示する C プログラムを作成してください。 解決策レストランの従業員が各顧客の請求書に 18% の税金を追加すると考えてみましょう。 税金の計算に使用されるロジックは -value=(money (money * 0.18));
金額に乗算する必要があります。 18%を加算し、レストランスタッフはお客様から税込金額を受け取ることができます。 例 ライブデモンストレーション#include<stdio.h> int main(){ float money,value; printf("enter the money with dollar symbol:"); scanf("%f",&money); value=(money + (money * 0.18)); printf("amount after adding tax= %f</p><p>",value); return 0; }出力
enter the money with dollar symbol:250$ amount after adding tax= 295.000000
#include<stdio.h> int main(){ float money,value; printf("enter the money with dollar symbol:"); scanf("%f",&money); value=(money + (money * 0.20)); printf("amount after adding tax= %f</p><p>",value); return 0; }出力
enter the money with dollar symbol:250$ amount after adding tax= 300.000000
以上が代入演算子を使用して税込み金額を計算する C プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。