- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
5 Posted Topics
I'm not quite sure how to word it but I have a group of tags I want to style nav->ul->li->a but I'm not sure what the syntax is to specify it I've tried just about every combination I can think of current code: <!DOCTYPE html> <html> <head> <title> Site One</title> … | |
Having a hard time trying to wrap my head around why my grid system fails, I'm assuming my train of thought is stuck at the moment(akin to writers block). My understanding of grids is while the current cell isn't the last one in the column/row(w/e is horizontal) /*do stuff*/ then … | |
Re: use return codes ? and then divert control. or you can do macro "magic" but in my opinion macro "magic" looks ugly. bool check_if_done(args) { if(args == something) { return false; } return true; } skip ahead inside your loop loop{ bool isDone = check_if_done(args); if(isDone == true) { //do … | |
It's been awhile since I've needed help, but I can't for the life of me figure out why subtraction isn't doing what it should be I'm clearly missing something or some change to how C++ interprets subtraction, if you could point me in the right direction that would be awesome … | |
So I wrote a small little tic tac toe game, it works without fail, now I'm just looking at ways to shorten this if/else conglomerate I've created, but so far haven't thought of a way to do so, I thought about using a switch but thought it would be about … |
The End.