c = (a / b, a%b) 运算输出顺序

#include<iostream>
int main()
{
    using namespace std;
    int a, b, c;
    a = 11; b = 3; c = 0;
    printf("%d\n", c = (a / b, a%b));
    system("pause");
    return 0;
}

 

posted @ 2016-05-03 20:34  #ifndef  阅读(588)  评论(0编辑  收藏  举报