代码搜索:readline
找到约 2,619 项符合「readline」的源代码
代码结果 2,619
www.eeworm.com/read/349332/10835086
txt n个数排序.txt
using System;
namespace n个数排序
{
class Class1
{
static void Main(string[] args)
{Console.WriteLine("请输入你要排几个数的顺序:\n");
int n;//接收你要几个数排序
n=int.Parse(Console.ReadLine());
i
www.eeworm.com/read/349332/10835128
txt 矩阵相乘.txt
using System;
public class MatrixMultiply
{
public static void Main()
{
int a,b,c,d;
Console.WriteLine ("该程序将求出两个矩阵的积:");
Console.WriteLine ("请指定矩阵A的行数:");
a=int.Parse (Console.Re
www.eeworm.com/read/349332/10835131
txt 十进制转换成二进制.txt
using System;
class ggg
{
static void Main()
{
Console.WriteLine("请你输入十进制,我为你转换成二进制,谢谢使用。");
int a,b,d,f;
int c=0;
a=int.Parse(Console.ReadLine());
b=a;
do
{
b/=2;
www.eeworm.com/read/349332/10835135
txt 三个数排序.txt
using System;
public class Test
{
public static void Main()
{
int x;
int y;
int z;
Console.WriteLine ("请输入三个数:");
x=int.Parse (Console.ReadLine ());
y=int.Parse (Console.ReadLi
www.eeworm.com/read/349332/10835156
txt 解一元二次方程的解.txt
using System;
class fangcheng
{
public static void Main()
{
//声名变量
double a;
double b;
double c;
double d;
double e;
double f;
double g;
double h;
double i;
doub
www.eeworm.com/read/349332/10835190
txt 三个数最大数.txt
using System;
public class Test
{
public static void Main()
{
int x;
int y;
int z;
Console.WriteLine ("请输入三个数:");
x=int.Parse (Console.ReadLine ());
y=int.Parse (Console.ReadLi
www.eeworm.com/read/349332/10835194
txt 求三阶行列式的值.txt
using System;
class Test
{
public static void Main()
{
Console.WriteLine ("该程序将求出三阶行列式的值:");
int[,] A=new int [3,3];
for(int i=0;i
www.eeworm.com/read/274165/10886562
java mousemotionevent.java
import java io.*;
public class ConsoleInput{
public Static void main(String[] args) throws IOException{
BufferedReader in= new BufferedReader( new InputStreamReader(System.in));
Syste
www.eeworm.com/read/272996/10932093
java fileb.java
import java.io.*;
class FileB{
public static void main(String args[]){
String s="How do you do!\r\nI like Java!\r\n";
InputStreamReader in;
FileWriter out;
BufferedReader br;
try{
www.eeworm.com/read/417741/10977191
java userinput.java
package ir.utilities;
import java.io.*;
/** A place to put some helper functions for interacting with the user
*
* @author Ray Mooney
*/
public class UserInput {
/** Read a line of input