Guest User

Untitled

a guest
Jun 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. public class KimboSlice {
  2.  
  3.     public static void main(String[] args)
  4.     {
  5.        
  6.         //user variable
  7.         int kimboAge = 31;
  8.         //
  9.         boolean rascist;
  10.        
  11.         if (kimboAge > 25) // all old people are rascist, FACT.
  12.         {
  13.             rascist = true;
  14.         }
  15.         else                // Kimbo is rasicst.
  16.         {
  17.             rascist = true;
  18.         }
  19.        
  20.         System.out.println("Tesh: hello kimbo how are you this fine winter morning?");
  21.         System.out.println("Kimbo Slice uses racism...");
  22.         System.out.println("Kimbo: yeah whatever teshav, i got a banana... you jelly??");
  23.         System.out.println("Rascism is super-effective...");
  24.         System.out.println("Tesh faints");
  25.     }
  26. }
Add Comment
Please, Sign In to add comment