20251123_140949 加加自增運算符的綜合演練 #include <iostream> using namespace std; int main(){ int a = 100; int b; b = a++ + ++a + a++ + a; cout<<b<<endl; }