Tagged Questions

6
votes
8answers
323 views

Practice for programming competition

I am entering a programming competition in few weeks and have been tackling past papers. One question I am stuck on is to call a recursive function which computes all possible binary integers with n ...
3
votes
6answers
12k views

Java Code for calculating Leap Year, is this code correct?

I am following "The Art and Science of Java" book and it shows how to calculate a leap year. The book uses ACM Java Task Force's library. Here is the code the books uses: import acm.program.*; ...
1
vote
2answers
56 views

How can I add shapes automatically in paintComponent?

As a beginner, whenever I want to add graphical shapes inside the frame I do something like this: public void paintComponent(Graphics g) { super.paintComponent(g); g.fillRect(0, 0, 10, 10); ...
1
vote
2answers
2k views

Java ACM package

I'm trying to write a java application in Eclipse. I'm really wanting to use the ACM.Program package, however, my copy of Eclipse doesn't have it installed! I've looked all over the net, and I can't ...
1
vote
1answer
234 views

acm.graphics library - Applet starts instead

I'm trying to use the ACM library, my source code looks like this. On running it the Applet is started, but the output is still in the console within Eclipse. It is supposed the app to be started in a ...
0
votes
2answers
154 views

Why does getHeight() method not work in the constructor?

This is the code: import acm.program.*; public class test extends GraphicsProgram{ public test(){ println(getHeight()); } public void run(){ ...
-1
votes
1answer
59 views

java mouse question ACM packages program and graphics

I have 2 classes, A and B. A is a subclass of Program (i.e. acm.program.*) and B is a subclass of GCanvas(i.e. acm.graphics.*). In Class A I have an init method which initiates and adds class B. ...
-1
votes
1answer
309 views

Which language is better suited for a programming competition: Java or C++? [closed]

I'd like to know which one is more suitable for programming contests, online judges. I don't want answers like "go with java" or "c++ is the fastest". I'd like to know that in more details, lets say ...