function auswertung02()
 {
   switch(punkte)
     {
       case 0:
       {
       note = "ungenügend(6)";
       break;
       }
       case 1:
       {
       note = "ungenügend(6)";
       break;
       }
       case 2:
       {
       note = "ungenügend(6)";
       break;
       }
       case 3:
       {
       note = "mangelhaft(5)";
       break;
       }
       case 4:
       {
       note = "mangelhaft(5)";
       break;
       }
       case 5:
       {
       note = "ausreichend(4)";
       break;
       }
       case 6:
       {
       note = "befriedigend(3)";
       break;
       }
       case 7:
       {
       note = "befriedigend(3)";
       break;
       }
       case 8:
       {
       note = "gut(2)";
       break;
       }
       case 9:
       {
       note = "gut(2)";
       break;
       }
       case 10:
       {
       note = "sehr gut(1)";
       break;
       }
       default:
       note = "keine Note";
     }
     start = false;
     zaehler = 0;

    return note;
 }
