代码搜索:Question
找到约 5,399 项符合「Question」的源代码
代码结果 5,399
www.eeworm.com/read/405546/2287847
java question2.java
class Q2
{
public Q2()
{
System.out.println(this.toString());
}
public Q2(String s)
{
System.out.println(this.toString()+" "+s);
}
public static void main(String args[])
{
www.eeworm.com/read/405546/2287849
java question7.java
class Question7
{
static double doMultiplication(double first,long times) //recursive method to compute first*times, times is long integer
{
if (times==0) return(0);
else if (times==1) retu
www.eeworm.com/read/405546/2287851
java question5.java
class Q6
{
public static void main(String args[])
{
int u=600;
int j;
int number;
int[] counter=new int[6];
for (j=0;j
www.eeworm.com/read/405546/2287852
java question8.java
abstract class Shape
{
abstract double getArea();
abstract double getPerim();
}
class Rectangle extends Shape
{
private float a;
private float b;
public Rectangle(float a,float b)
{
www.eeworm.com/read/405546/2287891
java question3.java
class NotExistedStudentInfoException extends Exception
//customized exception throwable for non-existed student info
{
public String toString()
{
return("Student info not existing...");
}
www.eeworm.com/read/405546/2287892
java question7.java
class Question7
{
static double doMultiplication(double first,long times) //recursive method to compute first*times, times is long integer
{
if (times==0) return(0);
else if (times==1) retu
www.eeworm.com/read/405546/2287893
java question1.java
class Question1
{
static void ascendingSort(int[] number)
{
int l=number.length;
int i,j,k;
for (i=0;i
www.eeworm.com/read/405546/2287894
java question5.java
class Q5
{
public static void main(String args[])
{
if (args.length==0) System.exit(1);
String cardNum=args[0];
if (cardNum.length()!=16)
{
System.out.println("invalid length\n
www.eeworm.com/read/405546/2287895
java question4.java
interface Vehicle
{
public void start(int i);
public void stop(int j);
}
class Bike implements Vehicle
{
public void start(int i)
{
System.out.println("Bike started as "+i+"\n");
}