最贊回答 / 慕尼黑4525711
using System;using System.Collections.Generic;using System.Text;namespace Test{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? double salary = 6000.00;//基本工資? ? ? ? ? ? double prize = 3200.00;//獎金? ? ? ? ? ? double tax = ...
2025-03-29
最贊回答 / 紅鼻子小黑
看作者的這張圖片,這幾種方式都可以,你這種多了一個"=",應(yīng)該是? string[] job = new string[4] { "經(jīng)理","項目主管","技術(shù)總監(jiān)","財務(wù)主管"};?<...圖片...>
2024-07-18
最新回答 / one突333
using System;using System.Collections.Generic;using System.Text;namespace projAboveAvg{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? int[] score = {90,65,88,70,46,81,100,68};? ? ? ? ? ? string[] name={"景珍","林惠洋","成蓉","洪...
2024-06-20
最新回答 / weixin_慕粉2246583
namespace?Test{????class?Program????{????????static?void?Main(string[]?args)????????{????????????double?money?=?60000.00;//存款金額????????????string x="";????????????if(money>=100000)????????????x="送一臺微波爐";????????????else?if(money>=50000)????????????x...
2024-06-11
最新回答 / 慕俠1157767
using System;using System.Collections.Generic;using System.Text;namespace Test{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? //請完善代碼? ? ? ? ? ? for (int i = 0; i < 7; i++) {? ? ? ? ? ? ? ? for (int j = 0; j < 7; j...
2024-03-15
最新回答 / weixin_慕先生0093861
Console.Write("平均分是{0},高于平均分的有:",avg)? Writer后要加Line,進(jìn)行換行,輸出格式才能與標(biāo)準(zhǔn)答案一致!
2024-02-01