摘要: using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using System.IO;namespace FolderBrowser{ /// <summary> /// Summary description for Form1. /// </summary> public class FolderDialog : System.Windows.Forms.Fo 阅读全文
posted @ 2012-10-08 09:52 尼姑哪里跑 阅读(743) 评论(0) 推荐(0) 编辑
摘要: public static void Main() { //打印表头 Console.WriteLine("九九乘法表"); //打印九九表 for(int i = 1; i <= 9; i++) { //计算并格式化输出九九表的内容 for(int j = 1; j <= i; j++) { Console.Write("{0}x{1}={2}\t", i, j, i*j); }... 阅读全文
posted @ 2012-10-08 09:22 尼姑哪里跑 阅读(121) 评论(0) 推荐(0) 编辑