|
-
January 16th, 2010, 08:35 PM
#4
Re: Coding Question not on Google
 Originally Posted by TheMightyJoda
Alrighty, im trying to make a game using Health bars that are illustraed by the following
"Health: |||||||||||||||||"
and i wanted to know if p1Health was my int variable (int p1Health; ) representing player 1's health, how i can make that output the same number of "|"s. So if p1Health = 20, i want the code to output "||||||||||||||||||||".
Code:
#include <string>
#include <iostream>
int main()
{
int p1Health = 10;
std::string strHealth(p1Health, '|');
std::cout << strHealth;
}
Regards,
Paul McKenzie
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|