#include <iostream> 2 using namespace std; 3 4 int main(){ 5 int n; 6 while(cin>>n){ 7 if(n&1) cout<<(n+1)/2*n<<endl<<endl; 8 else cout<<n/2*(n+1)<<endl<<endl; 9 }10 return 0;11 }里面的n&1是什么意思