Jump to content

LifeElevated

Senior Member
  • Posts

    766
  • Joined

  • Last visited

Everything posted by LifeElevated

  1. https://iosgods.com/topic/42500-hill-climpage=50&tab=comments#commenb-racing-2-ios-3/?t-2476782
  2. Can I get my famous award? I requested it months ago and I have multiple posts with over 100 pages
  3. It is a game save hack, you cannot have it to yourself. Only solution is to turn on airplane mode when you play, or data for the app if you aren't connected to wifi. Not working?
  4. Awesome! Muchas gracias, esta bein !
  5. The file is a save game. If you have your wifi/mobile data on it will change the name of your city because other people are also using the same save.
  6. Lol bro check now, you commented
  7. Just tried it again, works
  8. Hello ilovehackingames, this is happening because the save you just installed is being used by hundreds of other people.
  9. Ouch? Haha I do though
  10. @DiDA Requested Award: FAMOUS Proof: https://iosgods.com/topic/64625-newest-simcity-buildit-7-2018/?page=54&tab=comments#comment-2172417
  11. Second post with 50 pages of replies and still haven’t received my famous award ?
  12. Honestly this is worded to weird ?
  13. Given two double values double1 , double2, why isn’t it reliable to test their equality using: double1 == double2; ??? Comment possible code below!! If you are the first person to get this I will follow you!! HINT:
  14. You could also put nested if's but those are more complex so I left them out. if{ else{ if } } if{}
  15. I did lol . Did you mean to say something different?
  16. If & If-Else Statements An If Statement is a conditional statement. This basically means that if the program is allowed to execute a specific set of instructions, it will but, only if that condition is met. If that condition is not met the program skips over the instructions. An example of an If Statement is as followed: public class Test { public static void main(String args[]) { int x = 15; \\initialzes an integer (x) to 15 if( x < 20 ) { System.out.print("This is if statement"); \\this prints if x is less than 20 } } } An If-Else Statement works very similarly to an If Statement. The only major difference is that if your 'if' is NOT met it goes to 'else' and runs that code in the program. Instead of skipping over the conditional. An example of an If-Else Statement is as followed: public class Test { public static void main(String args[]) { int x = 30; \\like before, declares integer to a value. In this case 30 if( x < 20 ) { //if x is less than 20 (it is not) it will run the if-clause System.out.print("This is if statement"); } else{ // if the x is greater than 20 (in this situation) it runs the else-clause System.out.print("This is else statement"); } } } Some very common errors in If and If-Else Statements could be the following: if (yourCondition); \\<< IF YOU PUT A SEMICOLON HERE IT ENDS THE STATEMENT WITHOUT READING THE ACTUAL STATEMENT { //code here } That code will result in an error! -LifeElevated
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines