Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class Ch12 {
  2. public static void main(String[] args){
  3. writeStars(25);
  4.  
  5. }
  6. public static void writeStars(int n){
  7. if (n == 0){
  8. // base case
  9. System.out.println();
  10. } else {
  11. // recursive case
  12. System.out.print("*");
  13. writeStars(n - 1);
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement