Advertisement
Guest User

Untitled

a guest
Nov 12th, 2011
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class Practicer {
  4.  
  5. public static void main(String[] args) {
  6. Scanner cin = new Scanner(System.in);
  7.  
  8. while(cin.hasNext()){
  9. int times = cin.nextInt();
  10.  
  11. for(int i=0;i<times;i++){
  12. System.out.println("I don't say swear words!");
  13. }
  14.  
  15. }
  16.  
  17. }
  18.  
  19. }
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement