В программе с++. Помогите, заранее спасибочки!!! Вычислить значения выражений: 1) m+--n 2) n---m 3)m--<++n<br>
//Dev-C++ 4.9.9.2 #include using namespace std; int main(){ int n,m=0; cin>>n>>m; cout<<(m+--n)<<endl<<(n---m)<<endl<<(m--<++n);<br> cin.get(); cin.get(); return 0; }