YOU++ Logo

YOU++ - cool code for cool kids

  • EXPLORE
  • |
  • ABOUT US

How can we help?

Contact

CodeRobo GIF
Yay! Thank you for your message! We'll get back to you as soon as possible.
Oops!

We'd love to know what you think about us, so we can be even more awesome in the future. Please take a few minutes, and tell us!

CodeRobo GIF
Flash Message!

Make an Awesome Alien Quiz

20 tasks

Create an interactive Alien Quiz with our crazy friends from other galaxies.

Start Course Try Yourself
BadgeMake an Awesome Alien Quiz
BadgeMake an Awesome Alien Quiz
Bewohner der Erde

8 YEARS AGO BY LINA

Share See code

This project is coded by Lina (21 years old) with a little help of YOU++.

Want to learn how? Make your own!


// Hintergrundbild setBackgroundImage(professor); // Style der Quiz-Frage textFont(Jellybean, 25); fill(255,255,255); // Quiz-Frage words("Wieviele Menschen leben auf der Erde?",50,400); // Style der Antworten fill(90,90,90); textFont(Bubblegum, 22); // Antwort 1 words("7,4 Milliarden",150,340); // Antwort 2 words("7,4 Millionen",150,260); // Falsche Antwort if (answer == 1) { fill(153,204,0); textFont(Bubblegum,32); words("Richtig!",40,20); image(tick,40,60,100,100); } // Richtige Antwort if (answer == 2) { fill(204,0,0); textFont(Bubblegum,32); words("Falsch!",40,20); image(cross,40,60,100,100); }
++

Oops

You need a bigger screen.