Weird alignment issues in output?

Does anyone know why must the 4th item's line be out of the alignment to make the output be nicely aligned ? If I made the word "Attack" be nicely aligned as 1. , 2. and 3. , in output it will be not nicely arranged.

1
2
3
4
5

cout		 << "1. Abyss Devolos          F0647         Balance          -          SpeedStorm" << endl
		 << "2. Ace Dragon             E7609         Attack           -          HyperSphere" << endl
		 << "3. Anubion A2             E1057         Defense          -          Dual-Layer" << endl
	         << "4. Balar B4               E4726 	Attack           -          SlingShock" << endl


You can see the output of the code above here :
https://imgur.com/a/6bTmwRm
Last edited on
It lines up OK in the code output given. How are you aligning - space or tabs?
Ohh wow, thanks for pointing this space or tabs thing out... I cut the problematic part and pasted and used SPACE , it now arranges nicely and outputs neatly as well!
Topic archived. No new replies allowed.