最新回答 / 慕俠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,進行換行,輸出格式才能與標準答案一致!
2024-02-01
最新回答 / 星舟
using System;using System.Collections.Generic;using System.Text;namespace projAboveAvg{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? string[,]arr={{"景珍","90"},{"林慧洋","65"},{"成蓉","88"},{"洪南昌","70"},{"龍玉民","46"},{"單江開","8...
2024-02-01
Console.WriteLine(true|| false);//輸出True 邏輯或||一真一假輸出真
Console.WriteLine(true&& false);//輸出False邏輯與&&一真一假輸出假
Console.WriteLine(!false);//輸出True 邏輯非! 取反
Console.WriteLine(true&& false);//輸出False邏輯與&&一真一假輸出假
Console.WriteLine(!false);//輸出True 邏輯非! 取反
2023-10-15