Advertisement
calcpage

APCS2012_C2X5_BrighterDemo.java

Sep 23rd, 2012
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.24 KB | None | 0 0
  1. import java.awt.Color;
  2. public class BrighterDemo
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.         Color bobRoss = new Color(50,100,150);
  7.         System.out.println(bobRoss);
  8.         Color fooBar = bobRoss.brighter();
  9.         System.out.println(fooBar);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement