首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴springlove的代码贴全部
using System;
using Excel = Microsoft.Office.Interop.Excel;

namespace IndexedProperties
{
    class Program
    {
        static void Main(string[] args)
        {
            CSharp2010();
            //CSharp2008();
        }
......................
阅读全部 | 2011年11月22日 19:01
#include "stdio.h"
main()
{
  int i,j,y;
 for(i=0;i<=3;i++)
       for(j=0;j<=i;j++);
       { y=2*j+1;
         printf("%d",y);

}
       printf("\n");
}
阅读全部 | 2011年11月22日 18:38
1
springlove