最新回答 / 慕俠1157767
using System;using System.Collections.Generic;using System.Text;namespace Test{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? //請(qǐng)完善代碼? ? ? ? ? ? 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
最新回答 / 星舟
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"},{"單江開(kāi)","8...
2024-02-01
最新回答 / 精慕門(mén)9392155
給x賦值為0x++為x+1算出來(lái)為1x+為x+1 前面x已經(jīng)為1了 所以這里是2X%就是x除于2的余數(shù)就是2除于2的余數(shù)是0打印出來(lái)是0
2023-12-13
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