array feld buchstaben
-
hallo ich versuche gerade mithilfe der array function buchstaben
so anzuordnen:OOOOOOOOOO
OOOOOOOOOO
OOOOOOOOOO
OOOOOOOOOO
OOOOOOOOOOaber irgentwie funtz das nicht es kommt raus:
0 0 0 0 0 0 0
#include <cstdlib> #include <iostream> using namespace std; int main() { char field [10][10]; for(int iHigh = 0; iHigh < 10; iHigh++) { cout<<"3"<<field[10][10]; } system("pause"); retrun 0; }
ist [10][10] nicht x,y ?
-
Arraygröße = 0 bis Arraygröße-1
-
und wie komme ich in die senkrechte ???
-
^^ ich habs jetzt so gemacht und es tuts auch super:
[cpp]
...void feld()
{
for(int iHigh = 0; iHigh < 30; iHigh++)
{
cout<<3;
}
cout<<"\n";
for(int iHigh = 0; iHigh < 30; iHigh++)
{
cout<<"3";
}
cout<<"\n";
... // 6* noch
}
-
array schrieb:
... // 6* noch
Mach das doch auch mit einer Schleife...
#include <iostream> int main( ) { for( int height = 10; height != 0; height-- ) { for( int width = 10; width != 0; width-- ) { std::cout<<'O'; } std::cout<<std::endl; } std::cin.get( ); }
-
danke ! das habe ich gesucht/gebraucht
vielen dank