blikk info infothek forum galerie sitemap

Lösung Primzahl auf C#

zur Aufgabenstellung
using System;
using
System.Collections.Generic;
using
System.Text;
namespace
ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{


int zahl;
Console.Write("Gib eine Zahl ein: ");
zahl =
Convert.ToInt32(Console.ReadLine());

if (Prim(zahl) == true) //1
{
Console.WriteLine(zahl + " ist eine Primzahl");
}
else
{
Console.WriteLine(zahl + " ist keine Primzahl");
}
Console.Read();
}

static bool Prim(int zahl)// 2
{
int i = 2;
bool primzahl = true;
while (i < zahl - 1 && primzahl == true)
{
if (zahl % i == 0)
{
primzahl =
false;
}
else
{
i++;
}
}
return primzahl;
}

}
}


 

by männi & michl

nach oben
punkt   seitenbereich schließen

 

//1 Aufruf des Unterprogramms

//2  Unterprogramm mit Rückgabewert vom Datentyp Bool