MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides

Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > Programming > General programming discussions
Reload this Page C++ Script help
General programming discussions General programming discussions

Reply
 
LinkBack Thread Tools
C++ Script help
(#1)
Old
**Sweeny**'s Avatar
**Sweeny** is Offline
Knight-Lieutenant
Rep Power: 1
Reputation: 33
**Sweeny** is on a distinguished road
 
Posts: 284
Join Date: Dec 2007
C++ Script help - 03-15-2008

Can sum1 help me with this problem This is just a C++ Game score thing I made, but I got a question, do I need too have all these spaces??!?! like
Quote:
cout << "nScore: " << score << endl;
cout << "distance: " << distance << endl;
I dont get how many spaces to put into the cout code thing is it nessesary??
Code:
// game scores
 
#include <iostream>
int main()
{
      int score;
      double distance;
      char playAgain;
      bool shieldsUp
      short lives, aliensKilled;
      score = 0;
      distance = 1200.79;
      playAgain = 'y';
      shieldsUp = true;
      lives = 3;
      aliensKilled = 10;
      double engineTemp = 6541.33;
      cout << "nScore: "           << score << endl;
      cout << "distance: "     << distance << endl;
      cout << "playAgain: "     << playAgain << endl;
      //skipping shieldsUp since you don't generally pring Boolean Values
      cout << "lives: "           << lives << endl;
      cout << "aliensKilled: "<< alliensKilled << endl;
      cout << "engineTemp: "     << engineTemp << endl;
      int fuel;
      cout << "nHow much fuel? ";
      cin >> fuel;
      cout << "fuel: " << fuel << endl;
      typedef unsigned short int ushort;
      ushort bonus = 10;
      cout << "nbonus: " << bonus << endl;
      return 0;
}
// Game stat 2.0
#include <iostream>
using namescape std;
int main()
{
 
       unsigned int score = 5000;
      cout << "score: " << score << endl;
      //altering the value of a variable
      score = score + 100;
      cout << " score: " << score << endl;
      //combined assignment operator
      score+= 100;
      cout << "score: " << score << endl;
      //increment operators
      int lives = 3;
      ++lives;
      cout << "lives: "   << lives << endl;
      lives = 3;
      lives++;
      cout << "lives: "   << lives << endl;
      lives = 3;
      int bonus = ++lives * 10;
      cout << "lives, bonus = " << lives << "," << bonus << endl;
      lives = 3;
      bonus = lives++ * 10;
      cout << "lives, bonus = " << lives << "," << bonus << endl;
      //Integer wrap around
      score = 4294967295
      cout << "nscore: " << score << endl;
      ++score;
      cout << "score: "   << score << endl;
      return 0:
}
//Game stat 3.0
#include <iostream>
using namescape std;
int main()
{
     const int ALIEN_POINTS = 150;
     int aliensKilled = 10;
     int score = aliensKilled * ALIEN_POINTS;
     cout << "score: " << score << endl;
     enum difficulty {NOVICE, EASY, NORMAL, HARD, UNBEATABLE};
     difficulty myDifficulty = EASY;
     enum ship {FIGHTER = 25, BOMBER, CRUISER = 50, DESTROYER = 100};
     ship myShip = BOMBER;
     cout << "nTo upgrade my ship to a cruiser will cost"
          << (CRUISER - muShip) << " Resource Points.n";
     return 0:
}


Reply With Quote

Donate to remove ads.
(#2)
Old
MaiN is Offline
Contributor
Rep Power: 3
Reputation: 110
MaiN will become famous soon enoughMaiN will become famous soon enough
 
Posts: 358
Join Date: Sep 2006
03-16-2008

WRONG SECTION!
What do you think they created the C/C++ section for? O_o
But anyway:

No you don't.
Code:
cout<<"nScore: "<<score<<endl;
cout<<"distance: "<<distance<<endl;
Will work just as fine as:
Code:
cout << "nScore: " << score << endl;
cout << "distance: " << distance << endl;

The seconds example is "organized" better, and makes your code less confusing.


I was here. ~Dragon[Sky] I was here too. ~Kuiren

Last edited by MaiN; 03-16-2008 at 05:41 AM.
Reply With Quote
(#3)
Old
Cypher's Avatar
Cypher is Offline
Kynox's Pimp OMGRECURSION
Legendary User
Rep Power: 8
Reputation: 776
Cypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to behold
 
Posts: 1,795
Join Date: Apr 2006
Location: Hiding in ur warden
03-22-2008

C++ is a freestyle language, all whitespace that is not included in a string literal is discarded by the compiler, the following code segments are all exactly the same and are all valid, just formatted differently:

Code:
#include <iostream>
int main()
{
std::cout << "Hello, world!" << std::endl;
}
Code:
#include <iostream>
int main() { std::cout<<"Hello, world!"<<std::endl; }
Code:
#include <iostream>
int
main
(
)
{
std
::
cout
<<
"Hello, world!"
<<
std
::
endl
;

return
0
;
}




Yes my old nick was Chazwazza, stop asking >.<
Reply With Quote
Reply

Donate to remove ads.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On




Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327