由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - A QUESTION ABOUT GCD.JAVA
相关主题
再请教一个 编译错误Re: EJB - INTERVIEW QUESTIONS (Do you have answers, weblogic?)
java struts奇怪问题求助maybe useful SCJP-mock exam link list
URL 的问题怎么解决?Question about java and C connection
问个 maven multi-module project dependency 的问题Java Http Question?
Re: Question: Java SynchronizationRMI Question?
Re: rephase the questionhelp on security questions
Java interview questionsa JTable question
A printable version of Java Interview Questions.A simple question
相关话题的讨论汇总
话题: int话题: question话题: about话题: gcd话题: static
进入Java版参与讨论
1 (共1页)
e**y
发帖数: 13
1
e这有一个求最大公约数的java 程序:
public static int gcd(int i, int j)
{
if (j == 0)
{
return 1;
}
int k = i % j;
return( k == 0 ) ? j : gcd(j, k);
}
编译时出错:
E:\tools\JPad Pro\MyProjects\gcdTester.java:39: 'class' or 'interface'
expected
public static int gcd(int i, int j)
^
1 error
这是咋回事。
程序似乎没有错呀
e**y
发帖数: 13
2
知道咋错了。
so stupid

【在 e**y 的大作中提到】
: e这有一个求最大公约数的java 程序:
: public static int gcd(int i, int j)
: {
: if (j == 0)
: {
: return 1;
: }
: int k = i % j;
: return( k == 0 ) ? j : gcd(j, k);
: }

a**u
发帖数: 59
3
No class ?

【在 e**y 的大作中提到】
: e这有一个求最大公约数的java 程序:
: public static int gcd(int i, int j)
: {
: if (j == 0)
: {
: return 1;
: }
: int k = i % j;
: return( k == 0 ) ? j : gcd(j, k);
: }

a**u
发帖数: 59
4
why?

【在 e**y 的大作中提到】
: 知道咋错了。
: so stupid

1 (共1页)
进入Java版参与讨论
相关主题
A simple questionRe: Question: Java Synchronization
HELP! Question about CalendarRe: rephase the question
Got it : HELP! Question about CalendarJava interview questions
Re: Got it : HELP! Question about CalendA printable version of Java Interview Questions.
再请教一个 编译错误Re: EJB - INTERVIEW QUESTIONS (Do you have answers, weblogic?)
java struts奇怪问题求助maybe useful SCJP-mock exam link list
URL 的问题怎么解决?Question about java and C connection
问个 maven multi-module project dependency 的问题Java Http Question?
相关话题的讨论汇总
话题: int话题: question话题: about话题: gcd话题: static