Hi... I have a project whic is input should be like...
Kazma 7 780 m
Kaz 13 1400.5 f
Azaz 1 601 m
and output should be like....
Kazma 7 ,,,,780.00 "m"
,,,,,Kaz 13 1400.50 "f"
,,,Azaz 1 ,,,,601.00 "m"
(please think without , )
In this project input can be changeable but output looks must like this. As you see first words should be right aligned. Then number should be after one space then next number should be right aligned with point(.) last one is m or f should be in ""....
now I think first words I am gonna use in the string.. next number should be integer . other one is double last m or f should be char.....
I think I can handle the others but I dont get the first ones. How can I aligned to these words to right???? Any clue????? Please give simple c+ I dont understand c++ :(