esta es una forma:
using System;
using System.Collections.Generic;
using System.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int i = 0;
int b = 0;
while (i <= 1000)
{
i++;
if ((i % 13) > 0)
{
continue;
}
b++;
Console.WriteLine("13 x" + b + "=" + i);
}
Console.ReadLine();
}
}
}
TAMBIEN SE ME OCURRIO ESTA FORMA MS SENCILLA:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int a = 0;
int b = 13;
int c = 0;
while (a <= 500) {
c++;
a = a + b;
Console.WriteLine( "13 x" + c + "=" + a);
}
Console.ReadLine();
}
}
}
ESPERO TE SIRVA, SALUDOS!