摘要: //iotool.c#include <stdio.h>int inputInt(const char *info){ int r; printf("%s:",info); scanf("%d",&r); return r;}graphic.c#include <stdio.h>void diamond(int r){ int x,y; for(y=0;y<=2*r;y++) { for(x=0;x<=2*r;x++) { if(y==x+r || y==x-r || y==-x+r || y==-x+3*r) 阅读全文
posted @ 2012-10-27 15:35 真爱无限 阅读(292) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { try { replacefile rf = new replacefile(); rf.doReplace(@"F:\c1"); rf.doReplace(@"F:\c2"); rf.doReplace(@"F:\c3"); Console.WriteLine(... 阅读全文
posted @ 2012-10-27 14:17 真爱无限 阅读(556) 评论(0) 推荐(0) 编辑