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

#include<iostream>
int main()
{
    using namespace std;
    int a, b, c;
    a = 11; b = 3; c = 0;
    printf("%d
", c = (a / b, a%b));
    system("pause");
    return 0;
}
原文地址:https://www.cnblogs.com/-210843013/p/5456451.html