美文网首页
10.10 作业

10.10 作业

作者: 爱我别走Y | 来源:发表于2017-10-11 21:20 被阅读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/jdjgyxtx.html