public static void printCircleCircumference(int radius) { double pi = 3.14; double c = 2 * pi * radius; System.out.print(c); } }