真分数的四则运算

Posted gaoemm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了真分数的四则运算相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<stdlib.h>
int main()
{
int i,a,b,c,d,e;

for(i=0;i<100;i++)
{
a=rand()%(99-1+1)+1;
b=rand()%(99-1+1)+1;
c=rand()%(99-1+1)+1;
d=rand()%(99-1+1)+1;
e=rand()%(4-1+1)+1;


if((e=1)&(a<b)&(c<d))
printf("(%d/%d)+(%d/%d)= ",a,b,c,d);
if((e=1)&(a<b)&(d<c))
printf("(%d/%d)+(%d/%d)= ",a,b,d,c);
if((e=1)&(b<a)&(d<c))
printf("(%d/%d)+(%d/%d)= ",b,a,d,c);
if((e=1)&(b<a)&(c<d))
printf("(%d/%d)+(%d/%d)= ",b,a,c,d);

if((e=2)&(a<b)&(c<d))
printf("(%d/%d)-(%d/%d)= ",a,b,c,d);
if((e=2)&(a<b)&(d<c))
printf("(%d/%d)-(%d/%d)= ",a,b,d,c);
if((e=2)&(b<a)&(d<c))
printf("(%d/%d)-(%d/%d)= ",b,a,d,c);
if((e=2)&(b<a)&(c<d))
printf("(%d/%d)-(%d/%d)= ",b,a,c,d);

if((e=3)&(a<b)&(c<d))
printf("(%d/%d)*(%d/%d)= ",a,b,c,d);
if((e=3)&(a<b)&(d<c))
printf("(%d/%d)*(%d/%d)= ",a,b,d,c);
if((e=3)&(b<a)&(d<c))
printf("(%d/%d)*(%d/%d)= ",b,a,d,c);
if((e=3)&(b<a)&(c<d))
printf("(%d/%d)*(%d/%d)= ",b,a,c,d);

if((e=4)&(a<b)&(c<d))
printf("(%d/%d)/(%d/%d)= ",a,b,c,d);
if((e=4)&(a<b)&(d<c))
printf("(%d/%d)/(%d/%d)= ",a,b,d,c);
if((e=4)&(b<a)&(d<c))
printf("(%d/%d)/(%d/%d)= ",b,a,d,c);
if((e=4)&(b<a)&(c<d))
printf("(%d/%d)/(%d/%d)= ",b,a,c,d);

}

return 0;
}












































以上是关于真分数的四则运算的主要内容,如果未能解决你的问题,请参考以下文章

程序输出小学四则运算表达式,支持真分数四则运算

设计四则运算包含真分数的小学二年级运算

随机产生30到整数真分数四则运算

四则运算程序 要求:除整数外,还要支持真分数的四则运算

四则运算

软件工程实验一--编程随机生成30个四则运算,算数包括100以内的整数和真分数。