Code changes for last line

#include
using namespace std;
int main() {
int n;
cin>>n;
for(int i=1; i<=n; i++){
int val=1;
for(int cnt=1; cnt<=i; cnt++){
cout<<val;
val=val+1;
}
for(int cnt=1; cnt<=2*(n-i)-1; cnt++){
cout<<" ";
}
val=i;
for(int cnt=i; cnt>=1; --cnt ){
if(i!=n){
cout<<val;
val=val-1;
}else if(i==n){
cout<<val;
val=val-1;
}
}

	cout<<endl;
}
return 0;

}

Updated code link

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.