分数约分
#include <stdio.h>
int main ()
{
int a,b;
printf("请输入一个分数:");
scanf("%d/%d",&a,&b);
int q,m,t;
q = a;
...
Read More