If Else-If Else Combinations
- float score = 75;
- if(score >= 90){
- background(0, 255, 0);
- fill(0);
- text("Congratulations!", 7, 50);
- }
- else if(score >= 80){
- background(0, 0, 255);
- fill(255);
- text("Good job!", 18, 50);
- }
- else if(score >= 70){
- background(255, 255, 0);
- fill(0);
- text("Just okay.", 16, 50);
- }
- else if(score >= 60){
- background(255, 128, 0);
- fill(0);
- text("Not good!", 18, 50);
- }
- else{
- background(255, 0, 0);
- fill(0);
- text("Study more!", 15, 50);
- }