aspose file tools
The moose likes Android and the fly likes problem in UVA Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Mobile » Android
Reply Bookmark "problem in UVA" Watch "problem in UVA" New topic
Author

problem in UVA

diaa baraka
Greenhorn

Joined: Dec 14, 2012
Posts: 12
i've recently started in UVA website and i can't find why it doesn't accept my code
this is the link of the problem :
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=36
and this is my code:
import java.util.Scanner;

public class Main {

public static void main(String[] args) {
Scanner input = new Scanner(System.in);
while (input.hasNext()) {

long i = input.nextLong();
long j = input.nextLong();
int maxCount = 0;
int count;
long n;
for (long j2 = i; j2 <= j; j2++) {
count = 0;
n = j2;
while (n != 1) {
if (n % 2 != 0) {
n = 3 * n + 1;
} else {
n = n / 2;
}
count++;
}
count++;
if (count >= maxCount) {
maxCount = count;
}

}

System.out.println(i+" "+j+" "+maxCount);
}
}

}
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35241
    
    7
What does this have to do with Android (which this forum is all about) ?

You should also post what the actual problem is. Folks here are unlikely to know what the UVA web site is or does, and what, exactly, you mean by "it doesn't accept my code".


Android appsImageJ pluginsJava web charts
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: problem in UVA
 
Similar Threads
Finding primitive polynomials
null pointer exception in Game Of Life
Right triangles
Can't Find the bug...
Multi dimensional array