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

Untitled

By: a guest on May 24th, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 14  |  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. /**
  2.   *
  3.   * Beschreibung
  4.   *
  5.   * @version 1.0 vom 24.05.2012
  6.   * @author Muhammet Degerli
  7.   */
  8.  
  9. public class Verdoppler {
  10.  
  11.   public static void main(String[] args) {
  12.     //Variablen deklerieren
  13.     int startzahl = Tastatur.liesInt();
  14.     int endzahl   = Tastatur.liesInt();
  15.    
  16.  
  17.     for ( ;startzahl<endzahl;i++ ) {
  18.          startzahl * 2;
  19.     }
  20.      
  21.     }
  22.   }
  23. }