SoloCodigo
CLR: .Net / Mono / Boo / Otros CLR => C# => Mensaje iniciado por: elturkodj007 en Jueves 26 de Agosto de 2010, 05:56
-
Hola. soy nuevo en Programacion con C#, por lo que decidi pedir ayuda, en otro foro pude observar un programa en modo consola para poder elaborar las tablas de multiplicar utilizando un for, pero el que me han pedido en mi clase no es con for sino que utilize un while, pero no puedo hacer que funcione, alguien q pueda hecharme una manita, gracias.
-
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!
-
Muchas gracias!!! bueno espero aprender como tu pero se q se hace con mas practica. DTB.