最赞回答 / 慕用1293707
<...code...>两个if else吧。输入是否是会员:y/其他字符;if (是会员) if (大于200) 打七五折; else 打八折;else if (大于100) 打九五折; else 原价;
2020-09-17
已采纳回答 / qq_Azazel_dCMSTX
string[] job =new string[]{"经理","项目主管","技术总监","财务主管"};new string后面少了个”[]“
2020-08-29
最新回答 / qq_慕丝4581239
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { //声明整型数组,保存一组整数 int[] num = new int[] { 3,34,43,2,11,19,30,55,20}; forea...
2020-08-13