- C# Help http://www.csharphelp.com/
- C# Corner http://www.c-sharpcorner.com/
- .NET Magazine http://www.netmag.com.tw/
2009年4月11日 星期六
有著 C# 資源的好網站
有著 C# 資源的好網站
2009年4月3日 星期五
九九乘法表
using System;
namespace ConsoleApplication1
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
int i,j;
for (i=1;i<=9;i++)
{
for (j=2;j<=9;j++)
{
if (j*i < 10)
Console.Write("{0}*{1}={2} ",j,i,j*i);
else
Console.Write("{0}*{1}={2} ",j,i,j*i);
}
Console.Write("\n");
}
Console.ReadLine();
}
}
}
訂閱:
文章 (Atom)