最新回答 / 慕雪2877745
using System;using System.Collections.Generic;using System.Text;namespace Test{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? for (int y = 1; y <= 7; y++)? ? ? ? ? ? {? ? ? ? ? ? ? ? for (int x = 1; x <= 7; x++)? ?...
2017-09-18
最新回答 / qq_慕運維0487080
using System;using System.Collections.Generic;using System.Text;namespace Test{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? string today;//今天的午飯? ? ? ? ? ? string tomorrow;//明天的午飯? ? ? ? ? ? string temp;//中間變量? ? ? ? ?...
2017-09-15
最新回答 / 精慕門250258
加一個中間方法就行,專門用來轉換這個石頭剪刀布的定義。public string palyGame(int gameValue){????switch(gameValue)????{????????case 0:????????return "布";????????case 1:????????return "剪刀";????????case 2:????????return "石頭";????}}
2017-09-08