一个小东西

#include <iostream>

using namespace std; void abc(int a,int b,int c) {  cout<<a<<b<<c<<endl; } int main() {     int i = 10;  abc(i,i++,i++);  return 0; }

12  11 10

原文地址:https://www.cnblogs.com/crazycodehzp/p/3344562.html