Call this method from Waswritten
void writeSpaces(int spaceCount){
for(int i=0;i<spaceCount;i++){
cout<<" ";
}
}
before each cout
writeSpaces(count);
CLICK HERE to find out more related problems solutions.
Call this method from Waswritten
void writeSpaces(int spaceCount){
for(int i=0;i<spaceCount;i++){
cout<<" ";
}
}
before each cout
writeSpaces(count);
CLICK HERE to find out more related problems solutions.