标签:
#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; }
c = (a / b, a%b) 运算输出顺序
原文地址:http://www.cnblogs.com/-210843013/p/5456451.html