当前位置: 技术问答>java相关
初学,遇一问题不解???请帮帮忙
来源: 互联网 发布时间:2015-04-18
本文导语: 我写了一段代码,要求输入10个整数,输出最大值与最小值: import java.io.*; public class t3_10 { public static void main(String args[]) { int iMax = 0; int iMin = 0; int iBuf = 0; try { System.out.println("请输入十个整数:...
我写了一段代码,要求输入10个整数,输出最大值与最小值:
import java.io.*;
public class t3_10
{
public static void main(String args[])
{
int iMax = 0;
int iMin = 0;
int iBuf = 0;
try
{
System.out.println("请输入十个整数:");
iBuf = (int)System.in.read();
iMax = iBuf;
iMin = iBuf;
for(int iC = 1; iC iMax)
iMax = iBuf;
if(iBuf
import java.io.*;
public class t3_10
{
public static void main(String args[])
{
int iMax = 0;
int iMin = 0;
int iBuf = 0;
try
{
System.out.println("请输入十个整数:");
iBuf = (int)System.in.read();
iMax = iBuf;
iMin = iBuf;
for(int iC = 1; iC iMax)
iMax = iBuf;
if(iBuf