码迷,mamicode.com
首页 > 其他好文 > 详细

四则运算的简单实现

时间:2017-09-16 21:57:06      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:数组   except   代码   写入   rate   定义   ann   font   write   

 对于四则运算的简单实现,我个人理解需要实现以下功能:1、用户输入控制题目个数;2、用户控制题目的数值范围;3、对于除法要以真分数的形式;4、运算符个数不能超过3个;5、题目不能重复;6、生成题目存入txt;7、支持一万道题目;8、统计结果按格式输出还要存入txt。

  附上码云地址 https://git.oschina.net/greathong/SiZeYunSuan.git。

  接下来,对的代码思路进行分析。首先,用户输入题目数目和算术范围,这两个参数传入CreatStr自定义方法中。在其中,用OperatorKind自定义方法随机产生运算符,用operand方法随机产生指定范围的运算数值,并将数值存入字符串str[]。通过该字符串str[i]和str[location]对比,如相同,则代表重复,不往下进行。在不重复的情况下往下进行程序。Display方法输出运算式,4个为一行,writefile方法写入文件。Input方法存入用户此时输入的正确答案,并存入数组。对用户答案Input[i]与系统生成答案ans[i]对比,正确则count+1,count为正确题目个数。错误则用数组a[i]=-1表示。最后输出a[i]=-1中的i集合,这些i就为错误的题目号,反之则为正确的题目号,然后将统计结果写入文档。

  以下提供我的代码:

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.util.Random;
import java.util.Scanner;
public class SizeYunsuan {

	/**
	 * @param args
	 */
	public static Random rand=new Random();
    public static class Qst
    {
        static int Operand(int Range)//产生操作数
        {
            int Opd=rand.nextInt(Range*2+1)-Range;
            return Opd;
        }
        public static char OperatorKind(char Operator)//生成运算符
        {
            int OperatorPossible=rand.nextInt(3);
            
            switch(OperatorPossible)
            {
                case 0:
                    Operator=‘+‘;
                    break;
                case 1:
                    Operator=‘-‘;
                    break;
                case 2:
                    Operator=‘*‘;
                    break;
               
                default:
                    System.out.print("Error!");
            }
            return Operator;
        }
        public static boolean IfRepeated(String str[],int Location)//判断是否重复
        {
            for(int i=0;i<Location;i++)
            {
                if(str[i].equals(str[Location]))
                    return true;
            }
            return false;
        }
        public static int Ans(int ans,int Operand1,int Operand2,char Operator)//生成答案
        {
            switch(Operator)
            {
                case ‘+‘:
                    ans=Operand1+Operand2;
                    break;
                case ‘-‘:
                    ans=Operand1-Operand2;
                    break;
                case ‘*‘:
                    ans=Operand1*Operand2;
                    break;
               
         
                default:
                    System.out.print("Error!");
            }
            return ans;
        }
        //生成一道运算题
        public static void CreateStr(int Range,char Operator,String str[],int i,int QstNum,int ans[])
        {       int answer = 0;
                Qst.OperatorKind(Operator);
                int Operand1=Qst.Operand(Range);
                int Operand2=Qst.Operand(Range);
                str[i]=Integer.toString(Operand1);
                str[i]+=Operator;
                str[i]+=Integer.toString(Operand2);
                str[i]+="=";
                while(IfRepeated(str,i))//判断是否重复
                {
                    Operand1=Qst.Operand(Range);
                    Operand2=Qst.Operand(Range);
                    str[i]=Integer.toString(Operand1);
                    str[i]+=Operator;
                    str[i]+=Integer.toString(Operand2);
                    str[i]+="=";
                }
                    ans[i]=Qst.Ans(answer,Operand1,Operand2,Operator);
        }
        public static void Display(String str[])//输出生成的运算题
        {
             
            for(int j=0;j<str.length;j++)
            {
                System.out.print(str[j]);
                if(j%4==3)
                {
                    System.out.println();
                }
                else
                {
                    System.out.print(‘\t‘);
                }
            }
        }
        public static void Writefile(String str[],String filePath){
        	
        	try {
        		 File file = new File(filePath);
                 PrintStream ps = new PrintStream(new FileOutputStream(file));
                 for(int j=1;j<str.length;j++){
                 ps.println(j+"、"+str[j]);// 往文件里写入字符串
                
                 }
				
			} catch (FileNotFoundException e) {
				// TODO: handle exception
				 e.printStackTrace();
			}
        }
        public static void Input(int Input[],int QstNum)//输入问题答案
        {
            Scanner sca=new Scanner(System.in);
            for(int j=0;j<QstNum;j++)
            {
                Input[j]=sca.nextInt();
            }
        }
        public static void OutAns(int ans[],int QstNum)//输出答案
        {
            for(int j=0;j<QstNum;j++)
            {
                System.out.print(ans[j]);
                if(j%4==3)
                {
                    System.out.println();
                }
                else
                {
                    System.out.print(‘\t‘);
                }
            }
        }
        public static void ConfirmAns(int ans[],int Input[],int QstNum,int count)
        {   int a[] = new int[QstNum];
            count=0;
            for(int i=0;i<QstNum;i++)
            {
                if(ans[i]==Input[i]){
                    count++;
                    a[i]=i;
                }else{
                	a[i]=-1;
                }
            }
            try {
            	File file = new File("D:\\Grade.txt");
                PrintStream ps = new PrintStream(new FileOutputStream(file));
                System.out.print("Correct:");
                ps.print("Correct:");
                System.out.print(count);
                ps.print(count);
                System.out.print("(");
                ps.print("(");
                for(int i=0;i<a.length;i++){
                	
                	if(a[i]!=-1){
                		
                		 System.out.print(i+1+",");
                		 ps.print(i+1+",");
                		}
                	}
              
            	System.out.println(")");
            	 ps.println(")");
                System.out.print("Wrong:");
                ps.print("Wrong:");
                System.out.print(QstNum-count);
                ps.print(QstNum-count);
                System.out.print("(");
                ps.print("(");
                for(int i=0;i<a.length;i++){
                	
                	if(a[i]==-1){
                		
                		 System.out.print(i+1+",");
                		 ps.print(i+1+",");
                		}
                	}
             
           	System.out.println(")");
            ps.println(")");
				
			} catch (FileNotFoundException e) {
				// TODO: handle exception
			}

        }
        
         
    }
     
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		int Range,QstNum=0,count=0;
        
        char Operator = ‘+‘;
        Scanner sca=new Scanner(System.in);
        System.out.println("请输入生成题目的数量:");
        QstNum=sca.nextInt();
        System.out.println("请输入算数范围:");
        Range=sca.nextInt();
        
        String str[] = new String[QstNum];
        int ans[]=new int[QstNum];
        int Input[]=new int[QstNum];
        for( int i=0;i<QstNum;i++)
        {
            try
            {
                Qst.CreateStr(Range,Qst.OperatorKind(Operator),str,i,QstNum,ans);
            }
            catch(Exception e)
            {
                i--;
            };
        }
        Qst.Display(str);  
        String filePath;
        filePath="D:\\Exercises.txt";
		Qst.Writefile(str, filePath);
        System.out.println();
        System.out.println("输入答案:");
        Qst.Input(Input, QstNum);
        System.out.println("正确答案:");
        Qst.OutAns(ans,QstNum);
        System.out.println();
        Qst.ConfirmAns(ans,Input,QstNum,count);
	}

}
下面为代码的运行结果:
技术分享
在Exercises.txt与Grade.tex中图片
技术分享技术分享
另外,因为本人编程技术还在努力提高中,不可能一撮而就,一下完美完成老师题目要求(这不可能的,是代码总会有要改进的地方),还有一些不足。比如关于题目要求的真分数运算,可能单独写,我可以实现之,但功能添加进来的时候就出问题了。

 

四则运算的简单实现

标签:数组   except   代码   写入   rate   定义   ann   font   write   

原文地址:http://www.cnblogs.com/hoje/p/7532880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!