Guest User

Untitled

a guest
Aug 19th, 2018
66
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 TahtienTulostus {
  2. public static void tulostaTahtia(int maara) {
  3. for (int i = 0; i <= maara; i++) {
  4. System.out.print("*");
  5. }
  6. System.out.println("");
  7. }
  8.  
  9. public static void main(String[] args) {
  10. tulostaTahtia(5);
  11. tulostaTahtia(10);
  12. tulostaTahtia(8);
  13. }
  14. }
Add Comment
Please, Sign In to add comment