I would like to write "if i is a multiple of 11" then
System.out.print("|")
But I'm not sure how to do this?
I'm trying to incorporate sides on the edge of my 'tank of fish'.
The situation might be silly but I think the question is valid.
--------------------------------------------------
<#>< <#>< <#>< <#>< <#>< <#>< <#>< <#>< <#>< <#><
<#>< <#>< <#>< <#>< <#>< <#>< <#>< <#>< <#>< <#><
<#>< <#>< <#>< <#>< <#>< <#>< <#>< <#>< <#>< <#><
<#>< <#>< <#>< <#>< <#>< <#>< <#>< <#>< <#>< <#><
<#>< <#>< <#><
----------------------------------------------------
public class partCC
{
public partCC()
{
System.out.println("--------------------------------------------------");
{
for (int i=0; i<43; i++)
{if (i > 0 && i%10 == 0)
System.out.println();
System.out.print(" <#><");
}
{if
(i
System.out.println();
System.out.print("----------------------------------------------------");
}
}
}