using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConversionTemperatura
{
class Program
{
static void Main(string[] args)
{
double f, c;
int contador;
contador = 0;
for (f = 0.0; f < 100.0; f++)
{
c = 5.0 / 9.0 * (f - 32.0);
Console.WriteLine(f + " grados Farenheitson " + c + " grados celsius");
contador++;
//cada 10 lineas insertara una linea en blanco
if (contador == 10)
{
Console.WriteLine();
contador = 0;//reinicia el contador
}
}
Console.ReadLine();
}
}
}
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
No hay comentarios.:
Publicar un comentario
Es muy importante tu comentarios: