Zum Inhalt springen

Koordinaten-System (zweidimensionale Arrays)


Empfohlene Beiträge

Geschrieben

#include <iostream>
using namespace std;

int main()
{

int points;

int rows = 9;

int cols = 6;
int Field[rows][cols];

int N = 45;
int y;
int x;

for (int i = 0; i < rows ; i++){

   for(int j = 0 ; j < cols; j++){ Field[j] = 0;

      } 
}

cout << "Wie Viele Punkte wollen Sie: ";
cin >> points; if(points != N){
cout << "X und Y eingeben: " << endl;
for (int i = 1 ; i <= points ; i++){
cout << "Eingabe " << i << " : ";
cin >> x >> y;
while (x > 50 || y > 9)
{
cout << "falsche Eingabe\n";
cout << "Eingabe " << i << " : ";
cin >> x >> y; }
if(x % 10 == 0){
x = x / 10; Field[y][x] = 1;
    }
  }
cout << endl;
}
else{
   cout << "Falsche Eingabe" << endl;
 }
for(int i = rows; i > 0; i--)
{   
     cout << i << "|" ;
     for (int j = 0; j < cols; j++){
         if(Field[j] == 1){
   cout << "*"; } cout << " ";
   }
   cout << "\n\n\n"; } cout << "0" << "|";
   for(int j = 1; j < cols; j++)
  {
 cout << "---------" << j;
  }
}

Dein Kommentar

Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.

Gast
Auf dieses Thema antworten...

×   Du hast formatierten Text eingefügt.   Formatierung wiederherstellen

  Nur 75 Emojis sind erlaubt.

×   Dein Link wurde automatisch eingebettet.   Einbetten rückgängig machen und als Link darstellen

×   Dein vorheriger Inhalt wurde wiederhergestellt.   Editor leeren

×   Du kannst Bilder nicht direkt einfügen. Lade Bilder hoch oder lade sie von einer URL.

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...