Search found 1 match

by prljaviGary
Sun Apr 06, 2008 11:22 am
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 110415

101_Blocks in JAVA - RunTime Error

import java.io.*;

class Blocks{

private int n; // broj blokova
private int[][] bl;
private int[] posH;
private int[] posV;
private int[] h;

public Blocks() throws IOException{
// citanje n
int a;
String s = "";
while(!Character.isWhitespace(a = System.in.read()))
s += (char)a ...

Go to advanced search