Advertisement
Guest User

Untitled

a guest
Oct 25th, 2011
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class dn2 {
  4. public static void main(String[] args) {
  5.  
  6. int stLV, stSP, stPI, skupaj;
  7.  
  8. Scanner s = new Scanner(System.in);
  9.  
  10. do {
  11. System.out.print("Vnesite št. točk laboratorijskih vaj: ");
  12. stLV = s.nextInt();
  13. if(stLV>50){
  14. System.out.print("Ponovno ");
  15. }
  16.  
  17. } while(stLV>50 && stLV>=0);
  18.  
  19.  
  20. ............
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement