fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. System.out.println("Система расчеёта штрафов в германии");
  13.  
  14. int carSpeed = 130;
  15.  
  16. System.out.println(carSpeed);
  17.  
  18. int fineFor20to40 = 500;
  19. int fineFor40to60 = 1000;
  20. int fineFor60to80 = 2000;
  21. int fineFor80andMore = 5000;
  22. }
  23. }
Success #stdin #stdout 0.12s 52744KB
stdin
Standard input is empty
stdout
Система расчеёта штрафов в германии
130