Advertisement
fatalryuu

Untitled

Jun 11th, 2023
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. import java.io.*;
  2.  
  3. class Main {
  4. public static void main(String[] args) throws IOException {
  5. int a = 4;
  6. int b = 6;
  7. System.out.println(sum()); // -> 10
  8. //------------------------------------------
  9. int c = 0;
  10. int d = 1;
  11. int e = 423;
  12. System.out.println(isZero(c)); // -> true
  13. System.out.println(isZero(d)); // -> false
  14. System.out.println(isZero(e)); // -> false
  15. //------------------------------------------
  16. String str = "";
  17. System.out.println(getABCD(str)); // -> abcd
  18. //------------------------------------------
  19. //Переделай функцию getABCD так, чтобы в ней вызывалась 1 функция, но с разными буквами, т.е не 4 метода addA, AddB..., а просто addLetter
  20. System.out.println(getABCD(str));
  21. }
  22.  
  23. public static int sum() {
  24. return 0;
  25. }
  26.  
  27. public static boolean isZero(int n) {
  28. return true;
  29. }
  30.  
  31. public static String getABCD(String str) {
  32. return "";
  33. }
  34.  
  35. public static String addA() {
  36. return "";
  37. }
  38.  
  39. public static String addB() {
  40. return "";
  41. }
  42.  
  43. public static String addC() {
  44. return "";
  45. }
  46.  
  47. public static String addD() {
  48. return "";
  49. }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement