(String[]args)
| 18 | } |
| 19 | |
| 20 | public static void main (String[]args) |
| 21 | { |
| 22 | Scanner sc = new Scanner (System.in); |
| 23 | String str = sc.next (); |
| 24 | char ch1 = sc.next ().charAt (0); |
| 25 | char ch2 = sc.next ().charAt (0); |
| 26 | |
| 27 | replaceChar (str, ch1, ch2); |
| 28 | } |
| 29 | } |
nothing calls this directly
no test coverage detected