Codigo C#.docx

  • Uploaded by: nananana
  • 0
  • 0
  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Codigo C#.docx as PDF for free.

More details

  • Words: 181
  • Pages: 2
A continuación se muestra un código de programa C# de visual studio, sirve para crear una lista de artículos y la cantidad using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Estudiar { class Program { static void Main(string[] args) { /* crea un programa en donde te pida la cantidad de tipos de frutas y los nombres y que te de lun listado de los datos que te pide*/ Console.WriteLine("Cuántos tipos de frutas hay en total?"); int cantidadtipo = Convert.ToInt32(Console.ReadLine()); string[,] frutas = new string[cantidadtipo, 2];

for (int i = 0; i < cantidadtipo; i++) { for (int j = 0; j < 2; j++) { if (j == 0) { Console.WriteLine("Dame el nombre del tipo " + (i + 1).ToString() + " de la fruta"); frutas[i, j] = Console.ReadLine(); } else { Console.WriteLine("Dame la cantidad que hay de " + frutas[i, 0]); frutas[i, j] = Console.ReadLine(); } }

}

for (int a = 0; a < cantidadtipo; a++) { Console.WriteLine("Hay " + frutas[a, 1] + " " + frutas[a, 0] + "s"); }

Console.ReadLine();

} }

}

Related Documents

Codigo
November 2019 38
Codigo
November 2019 42
Codigo
November 2019 32
Codigo
December 2019 38
Codigo
November 2019 34
Codigo
December 2019 37

More Documents from ""

Codigo C#.docx
June 2020 5
Articulos 71.docx
June 2020 3
June 2020 5