Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import java.io.*;
  2. import java.util.*;
  3. public class X
  4. {
  5. public static void main(String[] args)
  6. {
  7. BufferedReader in = new BufferedReader(new FileReader("\chisla.txt"));
  8. //как их связать???
  9. int [] array = {...};
  10. int max = 0;
  11. for (int i=0; i<array.length; i++)
  12. {
  13. if(max<array[i])
  14. max = array[i];
  15.  
  16. }
  17. System.out.println("Max: "+max);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement