#include <iostream> #include <cstdlib> using namespace std ;int main (void){ int a=5; int b=6; cout << "a=" << a << ",b=" << b << endl; cout << "a+b=" << a+b << endl; system("pause"); return 0; }
錯在哪裡