美文网首页
21天C语言代码训练营(第三天)__练习答案

21天C语言代码训练营(第三天)__练习答案

作者: Hans941 | 来源:发表于2017-04-18 13:57 被阅读0次

    问题链接

    • 请编程打印出9*9乘法表
    • 我的代码如下
    #include<stdio.h>     
    void main()
    {
        int a, b, result;
        for (a = 1; a <= 9; a++)
        {
            for (b = a; b <= 9; b++)
            {
                result = a*b;
                printf("%d×%d=%-3d   ", a, b, result);
            }
            printf("\n");
        }
    }
    

    相关文章

      网友评论

          本文标题:21天C语言代码训练营(第三天)__练习答案

          本文链接:https://www.haomeiwen.com/subject/yabfzttx.html