最新回答 / 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
最新回答 / 慕碼人2595013
?Console.Write(true ||false);//輸出True? ? ? ? ? ? Console.Write(true &&false);//輸出False? ? ? ? ? ? Console.Write(!false);//輸出True? ? ? ? ? ? Console.ReadLine();
2021-08-16