while.ino 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. //////////////////////////////////////////////////////////////////////
  2. // //
  3. // Programmname: Happy New Year //
  4. // Datum: 28.11.2018 //
  5. // Beschreibung: Dieses Programm ist ein Countdown Zähler für das //
  6. // neue Jahr. Es zählt beginnend von 10 an runter auf //
  7. // 0 und gibt bei 0 ein "Happy New Year" aus. //
  8. // //
  9. // 1. Autor: ZHang,Yadong, EIT 2017 , 4064634. //
  10. // 2. Autor: Luo,Chao, EIT2017 , 4065217. //
  11. // //
  12. //////////////////////////////////////////////////////////////////////
  13. int i =10;
  14. void setup() {
  15. Serial.begin(9600);
  16. while (i>0){
  17. Serial.println("countdown:");
  18. Serial.println(i);
  19. i--;
  20. delay(1000);
  21. if (i<=0){
  22. Serial.println("Happy news Years");
  23. break;}
  24. }
  25. }
  26. void loop()
  27. {
  28. }