Játék a tömbökkel - tükör kiírás
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int[] a = { 3, 5, 77, 2, 6, 8, 3, 7, 9, 4, 98, 3, 7, 2, 8, 4 };
int min = 100;
int max = 0;
Console.WriteLine(a[0]);
foreach (int b in a)
{
Console.WriteLine(b);
if (b < min)
{
min = b;
}
}
foreach (int b in a)
{
Console.WriteLine(b);
if (b < min)
{
min = b;
}
}
Console.WriteLine("legkisebb érték:" + min);
Console.WriteLine("legnagyobb érték:" + max);
int atmenet = 0;
int hossz = a.Length;
int c;
int v;
c = 0;
v = 1;
Console.WriteLine(hossz);
Console.WriteLine(a[hossz - 1]);
foreach (int b in a)
{
Console.Write(b + ",");
}
Console.WriteLine();
while(c<(hossz/2))
{
atmenet = a[c];
a[c] = a[hossz - v];
a[hossz - v] = atmenet;
c++;
v++; }
foreach(int b in a)
{
Console.Write(b+",");
}
Console.ReadKey();
}
}
}
másik megoldás:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int[] a = { 3, 5, 77, 2, 6, 8, 3, 7, 9, 4, 98, 3, 7, 2, 8, 4 };
int min = 100;
int max = 0;
Console.WriteLine(a[0]);
foreach (int b in a)
{
Console.WriteLine(b);
if (b < min)
{
min = b;
}
}
foreach (int b in a)
{
Console.WriteLine(b);
if (b < min)
{
min = b;
}
}
Console.WriteLine("legkisebb érték:" + min);
Console.WriteLine("legnagyobb érték:" + max);
int atmenet = 0;
int hossz = a.Length;
int c;
int v;
c = 0;
v = 1;
Console.WriteLine(hossz);
Console.WriteLine(a[hossz - 1]);
foreach (int b in a)
{
Console.Write(b + ",");
}
Console.WriteLine();
while(c<(hossz/2))
{
atmenet = a[c];
a[c] = a[hossz - v];
a[hossz - v] = atmenet;
c++;
v++; }
foreach(int b in a)
{
Console.Write(b+",");
}
Console.ReadKey();
}
}
}
másik megoldás:
Nincsenek megjegyzések:
Megjegyzés küldése