代码搜索:Scanner
找到约 4,788 项符合「Scanner」的源代码
代码结果 4,788
www.eeworm.com/read/263652/11350897
inf scanimg.inf
[DSP upload]
Filename=scanimg.zip
Replacements=
Version=1.0
FileURL=
Description=This is a component that scan image from scanner. It supports all of the TWAIN compotable scanner, and scaned imag
www.eeworm.com/read/400017/11585803
java studentmanager.java
package com.apptech.hewenli;
import java.util.*;
public class StudentManager {
/**
* 管理多个学生,最多100个
* 这是学生关系系统的数据库
*/
Student[] Students = new Student[100];
/**
* 主菜单
*
www.eeworm.com/read/347848/11632748
java staticimportdemo2.java
import java.util.Scanner;
import static java.lang.Math.PI;
//Alternatively, you can replace the above line with the following:
//import static java.lang.Math.*;
/**
Class with static methods
www.eeworm.com/read/347848/11632756
java staticimportdemo.java
import java.util.Scanner;
import static java.lang.Character.toUpperCase;
//Alternatively, you can replace the above line with the following:
//import static java.lang.Character.*;
/**
Illustr
www.eeworm.com/read/347848/11632764
java roundstuff2.java
import java.util.Scanner;
/**
Class with static methods for circles and spheres.
*/
public class RoundStuff2
{
public static final double PI = 3.14159;
/**
Return the area o
www.eeworm.com/read/347848/11632771
java roundstuff3.java
import java.util.Scanner;
/**
Class with static methods for circles and spheres.
*/
public class RoundStuff3
{
/**
Return the area of a circle of the given radius.
*/
p
www.eeworm.com/read/259942/11755624
readme
re2c Version 0.12.3
------------------
Originally written by Peter Bumbulis (peter@csg.uwaterloo.ca)
Currently maintained by:
Dan Nuffer
Marcus Boerger
www.eeworm.com/read/259942/11755720
re strip_002.s.re
/* re2c lesson 002_strip_comments, strip_002.s, (c) M. Boerger 2006 - 2007 */
/*!ignore:re2c
- complexity
. When a comment is preceeded by a new line and followed by whitespace and a
new line
www.eeworm.com/read/259942/11755724
re strip_001.s.re
/* re2c lesson 002_strip_comments, strip_001.s, (c) M. Boerger 2006 - 2007 */
/*!ignore:re2c
- basic interface for file reading
. This scanner will read chunks of input from a file. The easiest way
www.eeworm.com/read/156519/11795493
java bigintegertest.java
/**
@version 1.20 2004-02-10
@author Cay Horstmann
*/
import java.math.*;
import java.util.*;
public class BigIntegerTest
{
public static void main(String[] args)
{