JAVA三題

2744 ワード

たくさん勉強しているので,技術の主線が必要だ.
しかし、授業が始まった以上、必要なものは身につけましょう.
/**
 * 
 3.9          java application              ,                。
 */
package xu12;
import java.io.*;
import java.util.Scanner;
import java.math.BigDecimal;
import java.text.DecimalFormat;
/**
 * @author zjy
 *
 */
public class xu12 
{
	public static void main(String[] args)
	{


		
		String doubleA=new String();
		Scanner in = new Scanner(System.in);//Scanner  a+b            ,   。        
		while(in.hasNextLine())
		{
			doubleA=in.next();
			int index=doubleA.indexOf(".");//  java           ,           ,          。
			String intA=doubleA.substring(0,index);
			String smallA=doubleA.substring(index+1);
			System.out.println("    :" + intA + "     : "+"0."+ smallA);
		}		
	}
}








/**
 * 
 3.10          java application          10   ,             
 */
package xu13;


import java.util.Scanner;


/**
 * @author zjy
 *
 */
public class Xu13 {


	/**
	 * @param args
	 */
	public static void main(String[] args)
	{
		int a,max,min,i;
		Scanner in=new Scanner(System.in);
		max=in.nextInt();
		min=max;
		for(i=1;i<10;i++)
		{
			//Scanner in1=new Scanner(System.in);
			a=in.nextInt();
			if(a>max) max=a;
			if(a<min) min=a;
		}
		System.out.println("   :"+max+"   :"+min);
		
	}
}


/**
 * 
 3.11         java application            , “#”  ,             。
 */
package xu14;


import java.util.Scanner;


/**
 * @author zjy
 *
 */
public class Xu14 {


	/**
	 * @param args
	 */
	public static void main(String[] args) 
	{
		String ch,max,min = null;
		Scanner in=new Scanner(System.in);
		for(;;)
		{
			min=in.next();
			ch=min;
			for(;ch.compareTo("#")==0;ch=in.next())
			{
			}
			System.out.println("        :"+min);
		}
	}


}




import java.io.IOException;
public class PPX 
{
 public static void main(String[] args) 
 {
  char ch='0';
  char ch1='0';
  int k=0;//    
  int f=0;
  try{
   System.out.println("       , '#'  ");
   ch1=(char)System.in.read();
   if(ch1!='#')
   {
	   if(ch1>='A'&&ch1<='Z')//        
	   {
		   ch1+=32;
		   k=1;
	   }
	   ch=(char)System.in.read();
	   while(ch!='#')	//          
	   {
		   if(ch>='A'&&ch<='Z')//        
		   {
			   ch+=32;
			   f=1;
		   }
		   if(ch<ch1)
		   {
			   ch1=ch;
			   k=0;
		   }
		   else
		   {
			   f=0;
		   }
		   ch=(char)System.in.read();
	   }
	   if(k==1||f==1)//    a~z     
	   {
		   ch1-=32;	   
	   }
	   System.out.println("         :"+ch1);
   }
   else
   {
	   System.out.println("  ");
   }  
   }catch(IOException e){ }
   
 }
}