

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PRACTICA5._1_CONSOLA
{
class Program
{
static void Main(string[] args)
{
double c, f,incr;
int conv,contador=1;
Console.WriteLine(" introduce la temperatura en grados celsius");
c = double.Parse(Console.ReadLine());
Console.WriteLine(" introduce la cantidad de conversiones
que deseas realizar");
conv = int.Parse(Console.ReadLine());
Console.WriteLine(" introduce los incrementos");
incr = double.Parse(Console.ReadLine());
Console.WriteLine("la temperatura en grados fahrenheit es");
while (contador <= conv)
{
f=(9.0/5.0)* c + 32;
Console.WriteLine("{0} {1}",c,f);
c = c + incr;
contador= contador + 1;
{







