Advertisement
Guest User

Untitled

a guest
May 24th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import java.text.DecimalFormat;
  2. public class hochzaehlen{
  3.  
  4. public static void main(String[] args){
  5. int x = 239;
  6. DecimalFormat format = new DecimalFormat("000000");
  7. for(int i = 0; i<x; i++){
  8.  
  9. int k = i;
  10.  
  11. System.out.println("\"locale\\fr\\ui\\ani\\Ohne Titel_" + format.format (k) + ".jpeg\"");
  12. }
  13.  
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement