新手求助~!!
c#吧
全部回复
仅看楼主
level 1
运行出错 帮忙修改一下using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Console.WriteLine("请输入年龄"); string age = Console.ReadLine(); string mystr; switch (age) { case 10: mystr = "你是小孩"; break; case 20: mystr = "你可以结婚了"; break; default: mystr = "输入错误"; break; } Console.WriteLine("{0}",mystr); } }} 
2008年03月18日 13点03分 1
level 0
case "10": mystr = "你是小孩"; break; case "20": mystr = "你可以结婚了"; break;
2008年03月18日 14点03分 2
1