We're a place where coders share, stay up-to-date and grow their careers.
Java, with the assumption that the function is actually taking an integer, not a float.
private static String pattern(int x) { StringBuffer sb = new StringBuffer("\n"), result = new StringBuffer(); for (int i = 1; i <= x; i++) { sb.insert(0,i); result.insert(0,sb.toString()); } return result.toString(); }
Java, with the assumption that the function is actually taking an integer, not a float.