最新回答 / qq_慕尼黑3205876
for(int x=1;x<=100;x++){int sum=0;sum=sum+x;Console.WriteLine(sum);}
2021-11-14
最新回答 / weixin_慕虎1420592
? ? ? ?你這個IF括號里面的語法不對,應該這樣:? ??? ? ? ? ? ? int age = 4;//年齡? ? ? ? ? ? if (age < 6||age > 60)? ? ? ? ? ? ? Console.WriteLine("請坐愛心座!");? ? ? ? ? ? else? ? ? ? ? ? ? ? Console.WriteLine("請堅持一下!");
2021-10-25
最新回答 / qq_精慕門9436011
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 = ...
2021-10-15
已采納回答 / 慕娘9088980
? ? ? ? ? ?int[]num=new int[]{89,90,98,56,60,91,93,85};? ? ? ? ? ? string[] xingming = new string[] {"吳松","錢東宇","伏晨","陳陸","周蕊","林日鵬","何昆","關欣"};? ? ? ? ? ?int max=num[0];? ? ? ? ? ?string name = xingming[0];? ? ? ? ??? ? ? ? ? ?for (int i=0;i<num.Lengt...
2021-09-17
最新回答 / 慕碼人2595013
?Console.Write(true ||false);//輸出True? ? ? ? ? ? Console.Write(true &&false);//輸出False? ? ? ? ? ? Console.Write(!false);//輸出True? ? ? ? ? ? Console.ReadLine();
2021-08-16