马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
- #include <stdio.h>
- #define lennum 64
- int res[lennum];
- long process(long m,long n)
- {
- long i,k;
- i=1;
- k=m/n;
- m-=(n*k);
- printf("%d.",k);
- do
- {
- m*=10;
- res[i]=m/n;
- m-=(n*res[i]);
- printf("%d",res[i]);
- i++;
- }while(i<=lennum);
- }
- int main()
- {
- int m,n;
- long process(long,long);
- printf("\nProcess M/N currently!");
- start: printf("\nInput M:");
- scanf("%ld",&m);
- printf("\nInput N:");
- scanf("%ld",&n);
- if (n==0) {printf("\nN can't be 0!!");getch();goto start;}
- process(m,n);
- getch();
- }
复制代码 |