Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.*;
- class Main {
- public static void main(String[] args) throws IOException {
- int a = 4;
- int b = 6;
- System.out.println(sum()); // -> 10
- //------------------------------------------
- int c = 0;
- int d = 1;
- int e = 423;
- System.out.println(isZero(c)); // -> true
- System.out.println(isZero(d)); // -> false
- System.out.println(isZero(e)); // -> false
- //------------------------------------------
- String str = "";
- System.out.println(getABCD(str)); // -> abcd
- //------------------------------------------
- //Переделай функцию getABCD так, чтобы в ней вызывалась 1 функция, но с разными буквами, т.е не 4 метода addA, AddB..., а просто addLetter
- System.out.println(getABCD(str));
- }
- public static int sum() {
- return 0;
- }
- public static boolean isZero(int n) {
- return true;
- }
- public static String getABCD(String str) {
- return "";
- }
- public static String addA() {
- return "";
- }
- public static String addB() {
- return "";
- }
- public static String addC() {
- return "";
- }
- public static String addD() {
- return "";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement