代码搜索:readline

找到约 2,619 项符合「readline」的源代码

代码结果 2,619
www.eeworm.com/read/429834/8787161

c readfile.c

#include #include #include"option.h" #include"readfile.h" void readline() { int i=0; while((line[i]=fgetc(source))!='\n'&&(line[i]!=EOF)) { i++; } line[i]='\0'
www.eeworm.com/read/385782/8788934

txt 实验4答案.txt

实验 4 1. 从键盘输入一个字母,如果输入的是小写字母,将其转换成大写字母后输出,否则原样输出。 import java.io.*; class Chp5_T4_1 { public static void main(String args[]) throws IOException { char ch; System.out.println("输入一个
www.eeworm.com/read/385782/8788938

txt 验4答案.txt

实验 4 1. 从键盘输入一个字母,如果输入的是小写字母,将其转换成大写字母后输出,否则原样输出。 import java.io.*; class Chp5_T4_1 { public static void main(String args[]) throws IOException { char ch; System.out.println("输入一个
www.eeworm.com/read/385782/8788939

txt 验4答22案.txt

实验 4 1. 从键盘输入一个字母,如果输入的是小写字母,将其转换成大写字母后输出,否则原样输出。 import java.io.*; class Chp5_T4_1 { public static void main(String args[]) throws IOException { char ch; System.out.println("输入一个
www.eeworm.com/read/385779/8788987

txt 实验4答案.txt

实验 4 1. 从键盘输入一个字母,如果输入的是小写字母,将其转换成大写字母后输出,否则原样输出。 import java.io.*; class Chp5_T4_1 { public static void main(String args[]) throws IOException { char ch; System.out.println("输入一个
www.eeworm.com/read/385779/8788998

txt 验4答案.txt

实验 4 1. 从键盘输入一个字母,如果输入的是小写字母,将其转换成大写字母后输出,否则原样输出。 import java.io.*; class Chp5_T4_1 { public static void main(String args[]) throws IOException { char ch; System.out.println("输入一个
www.eeworm.com/read/385777/8789074

txt 实验4答案.txt

实验 4 1. 从键盘输入一个字母,如果输入的是小写字母,将其转换成大写字母后输出,否则原样输出。 import java.io.*; class Chp5_T4_1 { public static void main(String args[]) throws IOException { char ch; System.out.println("输入一个
www.eeworm.com/read/385774/8789299

txt 实验4答案.txt

实验 4 1. 从键盘输入一个字母,如果输入的是小写字母,将其转换成大写字母后输出,否则原样输出。 import java.io.*; class Chp5_T4_1 { public static void main(String args[]) throws IOException { char ch; System.out.println("输入一个
www.eeworm.com/read/429645/8796941

java testtransform2.java

import java.io.*; public class TestTransForm2 { public static void main(String args[]) { InputStreamReader isr = new InputStreamReader(System.in); BufferedReader br = new B
www.eeworm.com/read/428903/8830094

java calc.java

import java.io.*; public class calc { /** * @param args * @param b */ public static void main(String[] args) { try{ double NumberA, NumberB;String Operate; BufferedReader in