Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 16th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public class Wetter
  2. {
  3.     ArrayList<String> protokoll;
  4.  
  5.     public Wetter()
  6.     {
  7.          protokoll = new ArrayList<String>();
  8.        
  9.     }
  10.        
  11.    
  12.        
  13.     public String addTemperature(String temp)
  14.     {
  15.         protokoll.add(temp);        
  16.  
  17.         String ausgabe = this.Datum() +" - " +temp+ " Grad";
  18.        
  19.         return ausgabe;
  20.     }...