Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.62 KB | None | 0 0
  1. public class Geek {
  2.     public Geek(String name) {
  3.  
  4.     }
  5.  
  6.     public String getName() {
  7.  
  8.     }
  9.  
  10.     public int getNumberOfQuestions() {
  11.  
  12.     }
  13.  
  14.     public boolean isEven(int num) {
  15.         if ((num % 2) == 0) {
  16.             return true;
  17.         } else {
  18.             return false;
  19.         }
  20.     }
  21.  
  22.     public String multiConcat(String text, int count) {
  23.         for(int i = 1; i < count; i++) {
  24.             System.out.print(text);
  25.         }
  26.         return;
  27.     }
  28.  
  29.     public int sumRange(int num1, int num2) {
  30.  
  31.     }
  32.  
  33.     public boolean sorted(int num1, int num2) {
  34.  
  35.     }
  36.  
  37.     public int countA(String text) {
  38.  
  39.     }
  40.  
  41.     public int countDigits(int num) {
  42.  
  43.     }
  44.  
  45.     public boolean isPrime(int num) {
  46.  
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement