Getting different output

#include
using namespace std;

int main(){

int n;
cin>>n;

int i;

for(i=1;i<=n;i++){

	
	for(int spaces =1;spaces<=n-1;spaces=spaces+1){

		cout<<" ";
	}

	int val = i;
	for(int cnt = 1;cnt<=i;cnt++){

		cout<<val;
		val=val+1;
	}

	val = val-2;
	for(int cnt = 1;cnt<=i-1;cnt++){

		cout<<val;
		val=val-1;
	}


	cout<<endl;

}

i am not getting any spaces in my output
please review my code

Please provide your code in Coding Blocks IDE.

@rsumitaj In you for loop to print spaces in your check condition you have written n-1 instead it should be n-i, also you are nor printing newline at end.


This is the corrected code, If this resolves your doubt mark it as resolved.

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.