标题:a = a%b a的值一直没有改变
取消只看楼主
Stubborn
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2017-6-26
结帖率:60%
 问题点数:0 回复次数:0 
a = a%b a的值一直没有改变
#include <stdio.h>
int main (void)
{
    int a,b;
    int c[200];
    int t_1;
   
    scanf ("%d %d", &a, &b);
   
    for(int i = 0; i<200; i++)
    {
        t_1 = (a*10)/b;
        c[i] = t_1;
        a = a % b;
    }
    printf("0.");
    for(int i = 0; i<200; i++)
    {
        printf("%d", c[i]);
    }
   
    return 0;
}

结果:
16 19
0.8888888888888888888888888888888888888888888888888888888888888888888888...
搜索更多相关主题的帖子: 改变 int for i++ printf 
2017-08-20 11:11



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-480169-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.133659 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved