Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. string funcbsp1() {
  2. string arru[2][2] = {{"a","b"},{"c","d"}};
  3. for(int i = 1; i >= 0; i--) { // Spalten
  4. for(int j = 1; j >= 0; j-=2) { //Rows
  5.  
  6. cout << arru[i][j] << endl; // erste ist immer spalte;
  7.  
  8. }
  9.  
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement