pROYECTOS

Páginas: 2 (448 palabras) Publicado: 25 de febrero de 2015
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Código_hecho_en_la_clase
{
class Program
{static void Main(string[] args)
{
int[,] nMultidimencional = new int[3, 4] {
{4,3,2,1},
{7,7,6,5},
{1,2,3,4}};
for (int fila = 0; fila < 3; fila++) {
for (int col = 0; col m)
{
m = nMultidimencional[fila, col];}
}
Console.WriteLine("\n");
}
Console.WriteLine("El número mayor es: {0}", m);
//PausaConsole.ReadKey();
}
}
}









OTRO PROYECTO
using System;
using System.Colection.Generic;
Using System.Linq;
Using System.Text;
Using System.Threading.Tasks;namespace progra_2
{
class program
{
static void Main(string[]args)
{
double numero1 = 5.5;
int numero2 = 9;
int numero3 = 6;
double Respuesta;
double espuesta2;

Respuesta =numero1+numero2;
Respuesta2 = Respuesta - numero3;

Console.WriteLine("Respuesta: {0} = {1} + {2} = {0} - {4} = {3}", Respuesta, numero1, numero2,Respuesta2, numero3);
Console.WriteLine();


OTROPROYECTO

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

//Programa de Operaciones
namespace Operaciones
{class Program
{
static void Main(string[] args)
{
Console.WriteLine("\n Escoja la operación que desea realizar:");
Console.WriteLine("\n");
//Declaramos las variables
int s1, s2, suma;int r1, r2, resta;
float m1, m2, multiplicacion;
double d1, d2, division;
int p1, p2, potencia;

Console.WriteLine("Escriba el primer entero:");//Convertimos la cadena a int
s1 =...
Leer documento completo

Regístrate para leer el documento completo.

Estos documentos también te pueden resultar útiles

  • Proyectos
  • Proyecto
  • Proyectos
  • Proyecto
  • Proyecto
  • Proyecto
  • Proyectos
  • Proyecto

Conviértase en miembro formal de Buenas Tareas

INSCRÍBETE - ES GRATIS