Search found 1 match

by nafeesdipta
Thu Oct 23, 2014 4:52 pm
Forum: Volume 6 (600-699)
Topic: 673 - Parentheses Balance
Replies: 243
Views: 79970

Re: 673 - Parentheses Balance

i am getting runtime error...please help

package uva673;
import java.util.*;
public class Uva673 {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {

Scanner key=new Scanner(System.in);
int t=key.nextInt();
Stack<Character> a;
while(t>0)
{
int ...

Go to advanced search