The colored picture shows a man, who's occupation is an architect. He is wearing a black suit with a white shirt. The man is holding a pencil in his right hand and is concentrated on his work. Right next to him, we can see a wooden model house, which the architect is most likely using as part of his work. On the other side of the table, we can see a calculator. The background is also white, all this information led me to believe, that the architect is in his office. I chose the sixth picture, because an architect's job is interesting to me and a future plan of mine, is to study architecture. All in all, I found this picture very appealing. 

...zur Antwort

It was a busy day today. I was allowed to go to school with 

Masud. I really like his school! Classes were mostly in English, so I

was able to understand almost everything. As you can imagine, all the classrooms

are smart classrooms: The students don't have to take a lot of books to school and they 

are allowed to do a lot of research. In history, the students have to write a test on 

Victorian Britain, and of course, I was not allowed to help anybody. To tell you the truth,

I was not able to answer half of the questions anyway. But Massud and his classmates did a really

good job. During the lunch break some of the students taught me a bit of the Bengali alphabet.

Not easy, but at the end of hte break, I was able to write my name! I really enjoyed this school day,

but tomorrow I'll have to stay at home and relax. I'm still on holiday!

...zur Antwort

Nein, jeder hat seine eigene Interessen, sie sollte lernen, deine Interessen zu respektieren. 

...zur Antwort

import javax.swing.JOptionPane;

public class Drachen {

  public static void main(String[] args) {

    String drache = JOptionPane.showInputDialog("Wie viele Sternchen möchten Sie ausgeben?");

    int n = Integer.parseInt(drache);

    int i, j, space = 1;

    space = n - 1;

    for (j = 1; j <= n; j++) {

      for ( i = 1; i <= space; i++) {

        System.out.print(" ");

      }

      space--;

      for (i = 1; i <= 2 * j - 1; i++) {

        System.out.print("*");         

      }

      System.out.println("");

    }

    space = 1;

    for (j = 1; j <= n - 1; j++) {

      for (i = 1; i <= space; i++) {

        System.out.print(" ");

      }

      space++;

      for (i = 1; i <= 2 * (n - j) - 1; i++) {

        System.out.print("*");

      }

      System.out.println("");

    }

  }

}

...zur Antwort