第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

接慕姜的一個(gè)關(guān)于用switch做銷(xiāo)售提成的問(wèn)題

接慕姜的一個(gè)關(guān)于用switch做銷(xiāo)售提成的問(wèn)題

C C# C++
邊防連 2017-09-13 19:51:33
switch-case計(jì)算銷(xiāo)售提成慕姜100w<=利潤(rùn)<110w部分提:1%?60w<=利潤(rùn)<100w部分提:1.5%40w<=利潤(rùn)<60w部分提:3%20w<=利潤(rùn)<40w部分提:5%10w<=利潤(rùn)<20w部分提:7.5%利潤(rùn)<10w部分提:10%假定利潤(rùn)額不會(huì)超過(guò)110w(110w以上部分不考慮)以下是我這個(gè)小白白寫(xiě)的,錯(cuò)的,只能輸出第一個(gè)switch,其他數(shù)值可以運(yùn)行但什么都不輸出,求大神詳解( ▼-▼ )using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ticheng{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? double bonus = 1000000;? ? ? ? ? ? double one=0.01;? ? ? ? ? ? double two=0.015;? ? ? ? ? ? double three=0.03;? ? ? ? ? ? double four=0.05;? ? ? ? ? ? double five=0.075;? ? ? ? ? ? double six=0.1;? ? ? ? ? ? char times = '*';? ? ? ? ? ? if (bonus >= 1000000 && bonus <= 1100000)? ? ? ? ? ? {? ? ? ? ? ? ? ? switch (times)? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? case '*': Console.Write(bonus * one); break;? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ?if(bonus>=600000&&bonus<1000000)? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? switch(times)? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? case '*': Console.Write(bonus * two); break;? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? if (bonus >= 400000 && bonus < 600000)? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? switch (times)? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? case '*': Console.Write(bonus * three); break; ?? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? if (bonus >= 200000 && bonus < 400000)? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? switch (times)? ? ? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? case '*': Console.Write(bonus * four); break;?? ? ? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ? ? if (bonus >= 100000 && bonus < 200000)? ? ? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? switch (times)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? case '*': Console.Write(bonus * five); break;?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if (bonus < 100000)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? switch (times)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? case '*': Console.Write(bonus * six); break;?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if (bonus > 1100000)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Console.WriteLine("老板讓給你!");? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??? ? ? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? }? ? ? ? ? ? }? ? ? ? }? ? }}
查看完整描述

1 回答

已采納
?
望遠(yuǎn)

TA貢獻(xiàn)1017條經(jīng)驗(yàn) 獲得超1032個(gè)贊

?if?(bonus?>=?1000000?&&?bonus?<=?1100000)
???{
????switch?(times)
??{
???case?'*':?Console.Write(bonus?*?one);?break;
???}
??//這里應(yīng)該有一個(gè)}上一種情況結(jié)束,下同,其實(shí)就是括號(hào)的問(wèn)題
??if(bonus>=600000&&bonus<1000000)
????{
?????switch(times)
????{
?????case?'*':?Console.Write(bonus?*?two);?break;
?????}

你這里雖然用了switch但是都是無(wú)用功,而是用if..else if...if來(lái)實(shí)現(xiàn)的

查看完整回答
1 反對(duì) 回復(fù) 2017-09-13
  • 邊防連
    邊防連
    首先,感謝你的援助,已經(jīng)能正常運(yùn)行了,不過(guò)要把最底下六個(gè)}全部刪掉,這個(gè)問(wèn)題是我學(xué)到條件運(yùn)算符看到的,然后去學(xué)了一下switch,現(xiàn)學(xué)現(xiàn)賣(mài),見(jiàn)笑了,還想請(qǐng)教一個(gè)問(wèn)題,如果只用if-else是怎么做的?if之后如何計(jì)算?
  • 邊防連
    邊防連
    回復(fù) 望遠(yuǎn):這個(gè)問(wèn)題用switch、if哪個(gè)解決比較好?
  • 1 回答
  • 0 關(guān)注
  • 1617 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)