最新回答 / 又見大剛
有的? http://wenku.baidu.com/link?url=ZJ1FCxBR6-2tsXgWLMjyd9QBWReHS_ghm5V8l1GEdHG6ToZqLm7F7fsYrCRY7Qc3VlOY0Yd0MlBORW6YBx7cCOqWBdl5ds0rE6JOz9oxMZC
2017-02-15
已采納回答 / loen_nnn
break是跳出當前循環體外,而continue是跳過在continue后面的語句,轉而跳到循環判斷條件中,進行下一次的循環;同理可知while和do-while循環的一樣
2017-02-10
最贊回答 / Gaohay
using System;?using System.Collections.Generic;?using System.Text;??namespace sushu?{
? ?class Program
? ?{
? ? ? ?static void Main(string[] args)
? ? ? ?{
? ? ? ? ? ?int m, n, i, t;
? ? ? ? ? ?? ? ? ? ? ? ?Console.WriteLine("請輸入第一個整數:");
? ? ??? ?...
2017-01-31
最贊回答 / qq_白板_2
如果int a,b,c;a=1;b=a++;c=++a;Console.WriteLine("a");Console.WriteLine("b");Console.WriteLine("c");b=1c=2a=2 ?意思是a++,++a都會使a加1,但是++a會先加1再輸出,而a++會先輸出再加1
2017-01-26
已采納回答 / 慕粉3508730
?【【【 { Console.WirteLine("有7的整倍數");}】】】? ? ? ? ? ? else? ? ? ? ? ? {Console.WriteLine("沒有7的整倍數"); }倒數第三行代碼拼寫錯誤,Write拼寫成Wirte
2017-01-19