Skip to content

Instantly share code, notes, and snippets.

View IgorCherniavsky's full-sized avatar

IgorCherniavsky

View GitHub Profile
@IgorCherniavsky
IgorCherniavsky / EighthSum
Created October 19, 2016 12:07
SecondHomework
/**
* Created by Igor on 19.10.2016.
*/
public class EightSum {
public static void main(String[] args) {
String m = "#";
for (int i = 1; i <= 10; i++){
for (int j = 1; j <= 10; j++){
if(i<j) {
System.out.print("#");