10-10

作者: zhengpeng | 来源:发表于2017-10-10 19:58 被阅读0次

    题目一:计算两个班的人数

    #include <stdio.h>
    int main()
    {
        printf("%d\n",54+52);
        return 0;
    }
    

    题目二:取余运算

    #include <stdio.h>
    int main()
    {
        printf("%d\n",54%4);
        return 0;
    }
    

    题目三:求差值

    #include <stdio.h>
    int main()
    {
        printf("%d\n",54-52);
        return 0;
    }
    

    题目四:输入操作

    相关文章

      网友评论

          本文标题:10-10

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