摘要: c#函数 1 using System; 2 public class ATM 3 { 4 public static string UserName = ""; 5 public static string UserPwd = ""; 6 public static double Money = 0; 7 public static double Money1 = 0; 8 public static void Main() 9 { 10 11 Menu(); 12 } 13 ... 阅读全文
posted @ 2012-07-30 18:36 何小盒 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 9*9乘法表9*9乘法表<script type="text/javascript"> var a = 0; for (i=1;i<10;i++){ for(j=1;j<=i;j++){ a=i*j; document.write(j+"*"+i+"="+a+"&nbsp"); } document.write("<br/>"); }</script>水仙花数第一种算法<script type="text/javascrip 阅读全文
posted @ 2012-07-30 18:27 何小盒 阅读(236) 评论(0) 推荐(0) 编辑