- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
5 Posted Topics
Re: try taking your video card out and putting it back in.. I've had that issue and found that doing this fixed it. If a vid card is seated even slightly wrong it can have some weird effects. I bet it caught juggled around in the move and some parts inside … | |
Re: > how can I put an incrasing variable (for n splitted words) instead of 'Console.WriteLine(word)' you already have your "incasing" variable -- words. maybe I don't understand your question. words is your variable; it's an array of variables. you would reference the variables with index notation: words[0], words[1], words[2], etc... … | |
Re: line 126:` else if(6 < feet && inches <= 4 && Weight <= 260)` the `6 < feet` need to be switched around. NathanOliver is right.. that `if(feet <=6)` will negate your remaining if statement if feet is not less than or equal to 6 from the start. you need … | |
Re: u can use "fips" from a bash prompt and see if your windows drive is still there. (fips is a partition program. I think you can do like.. "man fips" from bash for the manual on it.) It won't be called "C:\", instead it will be //hda/disk1 or something like … | |
Re: in your main function call the maxvalue function and store the return value in a variable. example: int result = maxvalue(v1, v2, v3, v4, v5); |
The End.