代码搜索:Scanner
找到约 4,788 项符合「Scanner」的源代码
代码结果 4,788
www.eeworm.com/read/483267/6602933
java chuquan.java
package day04;
import java.util.Scanner;
public class ChuQuan {
public static void main(String[] args) {
Scanner sca=new Scanner(System.in);
System.out.println("璇疯緭鍏ヤ綘瑕佷粠1寮
www.eeworm.com/read/483267/6602936
java caishu.java
package day04;
import java.util.Scanner;
public class CaiShu {
public static void main(String[] args) {
int num=(int)(Math.random()*100);
System.out.println("璇疯緭鍏
www.eeworm.com/read/478118/6720373
java adaptedrandomchars16.java
// interfaces/AdaptedRandomChars16.java
// TIJ4 Chapter Interfaces, Exercise 16, page 334
/* Create a class that produces a sequence of chars. Adapt this class so
* that it can be an input to a Sca
www.eeworm.com/read/477670/6730467
java stackarray.java
import java.io.*;
import java.util.Scanner;
class stack
{
int a[],top,count;
public stack(int x)
{
a=new int[x];
top=-1;
count=0;
}
public void push(int x)
{
www.eeworm.com/read/477670/6730468
java binarysrch.java
import java.io.*;
import java.util.Scanner;
class binarysrch
{
public static boolean bin_search(int a[],int n,int key)
{
int first=0,last=n-1;
//SORTING
for(int i=0;i
www.eeworm.com/read/477670/6730470
java stacklink.java
import java.io.*;
import java.util.Scanner;
class node
{
public int data;
public node link;
}
class stacklink
{
node top;
int count;
public stacklink()
{
top=null
www.eeworm.com/read/477670/6730471
java stackimp.java
import java.io.*;
import java.util.Scanner;
class node
{
public int data;
node link;
}
class stack
{
private node top;
public stack()
{
top=null;
}
www.eeworm.com/read/477183/6739646
java exp2_2.java
package MyPakeage;
import java.util.Scanner;
interface t1 {
abstract void x1();
}
interface t2 {
abstract void x2();
}
public class exp2_2 {
public static void main(String[] args
www.eeworm.com/read/477190/6739679
java exp2.java
import java.util.Scanner;
public class exp2 {
public static void main(String agrs[]) {
System.out
.print("Please inoput your first graphic type you want to create:");
Scanner in = new
www.eeworm.com/read/476708/6748658
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// scanner1.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.