小学生算术题

问题及代码:

/*
*Copyright (c) 2016,烟台大学计算机学院
*All rights reserved.
*文件名称:main.cpp
*作    者:李磊涛
*完成时间:2016年3月27日
*版 本 号:v1.0
*
*问题描述:小学生算术题。
*输入描述:算数结果。
*程序输出:对错。
*/
#include<iostream>
#include<time.h>
using namespace std;
void suiji(int m);
int main()
{
	int m=10;
	suiji(m);
}
void suiji(int m)
{
	int a,b,i,h,c,sum;
	for(i=1;i<=m;i++)
	{
		cout<<"第"<<i<<"题"<<endl;
		srand((unsigned)time(0));
		a=rand() % 100;
		b=rand() % 100;
		h=rand() % 4;
	if(h==0)
	{
		cout<<a<<"+"<<b<<"=";
		cin>>c;
		cout<<endl;
		if(c==a+b)
			cout<<"    right!";
		else
			cout<<"    wrong!";
		cout<<endl;
		continue;
	}
	if(h==1)
	{
		cout<<a<<"-"<<b<<"=";
		cin>>c;cout<<endl;
		if(c==a-b)
			cout<<"    right!";
		else
			cout<<"    wrong!";
		cout<<endl;
		continue;
	}
	if(h==2)
	{
		cout<<a<<"*"<<b<<"=";
		cin>>c;cout<<endl;
		if(c==a*b)
			cout<<"    right!";
		else
			cout<<"    wrong!";
		cout<<endl;
		continue;
	}
	if(h==3)
	{
		cout<<a<<"/"<<b<<"=";
		cin>>c;cout<<endl;
		if(c==a/b)
			cout<<"    right!";
		else
			cout<<"    wrong!";
		cout<<endl;
		continue;
	}
	
	}
}



运行结果:

小学生算术题_第1张图片

知识点总结:
通过该程序,强化了我对简单程序结构的认识。
学习心得:
期间有很多小错误,要继续写程序争取早日掌握C++。

你可能感兴趣的:(C++,计算机)