Worddesign allows you to add formatting such as shapes and colours to text
Answer:
10000000000
Explanation:
While a typical byte only goes up to 8 digits, you can expand past that by having each integer past the initial 8 just double the amount from before
public class JavaApplication82 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++){
for (int w = 0; w < i; w++){
System.out.print("*");
}
System.out.println("");
}
}
}
This works for me.