下列程式執行後,變數a 值為何?
#include <iostream>using namespace std;int main(){ int a = 10; a = a + 5; cout<<"a="<<a; return 0;}
a=15