委託販売員の控除後の手取り額を計算して表示するプログラムを作成してください。従業員は総売上高の 7% を総賃金として受け取ります。彼または彼女の連邦税率は 18% です。彼または彼女は、退職金プログラムに 10%、社会保障に 6% を拠出します。以下のステップ 2 で提供される処理ロジックをガイドとして使用してください。プログラムの出力は次のようになります。
週間売上を入力: 28,000 総売上: $28,000.00 総給与 (7%): $1,960.00 支払われた連邦税: $352.80 支払われた社会保障: $117.60 退職金: $196.00 控除合計: $666.40 手取り額: $1,293.60 何かキーを押すと続行します。
//これが私のコードです。入力に問題があります
//Declarations
int weeklySales;
double grossPay = weeklySales * .07;
double fedTax = grossPay * .18;
double retirement = grossPay * .1;
double socSecurity = grossPay * .06;
double totDeductions = socSecurity + retirement + fedTax;
double takeHomePay = grossPay - totDeductions;
//Promt user for Input
System.Console.WriteLine("What is your weekly Sales?");
weeklySales = Console.Read();
System.Console.ReadLine();
//Output Display
System.Console.Write("\nYour Weekly Sale amount is :\t\t" + weeklySales+ "\n\nGross Pay:\t\t\t\t" + grossPay+ "\n\nFed Tax \t\t\t\t" + fedTax + "\n\nRetirement\t\t\t\t"+ retirement + "\n\nSocial Security:\t\t\t" + socSecurity + "\n\nTotal Deductions:\t\t\t" + totDeductions + "\n\nMaking your take home pay:\t\t" + takeHomePay);
System.Console.ReadLine();