摘要: ////有一组函数:y=x (x<1) ////y=2*x-1 (1<=x<10) ////y=3*x-11 Console.Write("x="); double x = double.Parse(Console.ReadLine()); double y; if (x < 1) { Consol 阅读全文
posted @ 2016-03-07 23:31 随亦 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 Console.Write("女:你有房子么"); string yes = Console.R 阅读全文
posted @ 2016-03-07 22:47 随亦 阅读(267) 评论(0) 推荐(0) 编辑