I answered a question just yesterday with a beginning programming student whose major issue was unfamiliarity with compiling - she "gets" the pseudocode, but just couldn't get it into proper syntax. I think it's possible she may have been listening to a lecture a lot, but maybe not practice coding in front of a keyboard so much. Perhaps having so much lab time is actually a good thing? You could give them very small, easy assignments and then walk through the lab to see how students are progressing, answering a few questions here and there.
A list of some possible assignments:
- a "hello world" program (to get them compiling and running programs)
- a program that adds two (magic) numbers - get them to use methods
- a program that adds two numbers supplied by the user - get them to take user input (get them to do i/o and number conversions)
Really, almost anything to get them into doing the process of compiling and running often is good. This practice is, imho, very important for the student - it familiarizes them with the workflow and helps them begin to reason through how the language is working. Perhaps for the first section you could have them work individually, then for the next section have them work in groups of 2 or 3 on e.g. harder assignments? Then for the class discussion part at the end you could present common issues you've encountered from the students for that day - this lets everyone review what they've worked on.
I realize the list above contains really trivial examples, but that's actually important for establishing a working environment, etc. I think we may let ourselves take that sort of thing for granted. For a better list of possible programming assignments, how about looking through the list of problems from Project Euler?
Just my two cents.