vote up 0 vote down star

I'm working as a TA in an introductory programming class, and the students tend to submit their programs as either one line, or without any indentation. Is there any tool that allows me to insert indents and things like that automatically? (We're using C++ and VisualStudio)

flag

We might be able to suggest more specific products if you're able to give a bit more information about your situation: Is this a Windows-only environment? Do you have any budget? Are you trying to clean-up a handful of programs at a time (perhaps semi-manually), or are you doing thousands, and need something with batch processing? – Martin Sep 25 at 2:10
13  
Tell the students they will loose marks for badly formatted code. – Martin York Sep 25 at 4:07
11  
Code formatting is a necessary skill in the software industry. If the students aren't able to format their code correctly, they don't deserve even a passing grade. – Wedge Sep 25 at 5:35
1  
If you receive a program without any line-breaks, I'm not sure it is even possible to restore the code. For example, how would you determine where //comments end? – UncleBens Sep 25 at 17:06

6 Answers

vote up -1 vote down check

Select the entire file (Ctrl-A) and then hit Ctrl-K Ctrl-F, which is essentially format the entire document.

EDIT: Of course in Visual Studio IDE

link|flag
2  
This won't change vertical space though. If people are submitting on a single line, it will just correct the indentation on that single line. – Martin Sep 25 at 1:46
Agreed. – Ashwin Sep 25 at 1:53
This is a stupid answer. Real-life programming is more about communicating ideas to other humans than it is about communicating with the compiler. If you don't teach them that lesson, then you are letting them down. – alex tingle Sep 25 at 7:51
1  
When started reading, I thought it will be "Ctrl-A and DELETE" :-D – Pawka Sep 25 at 10:49
That is actually a good idea! Why did I not think of that? – Ashwin Sep 25 at 18:38
vote up 17 vote down

You're after a pretty printer. I'd suggest Googling for C++ pretty printer, and looking for something that meets your requirements (price, platform).

As an aside, you may find that deducting marks for poorly formatted code will work just as well. Students need to learn that good code layout is an important part of writing maintainable code.

link|flag
5  
Upvoted for suggesting that points are deducted for poorly formatted code. – Ryan Taylor Sep 25 at 1:42
Great idea, except that online homework site we're using removes all formatting. – chustar Sep 25 at 3:13
2  
There's your problem then. You might want to consider asking them to change that, or find another supplier. Right tools for the right job and all. – Martin Sep 25 at 6:33
Be very careful deciding what is "poorly formatted". I must admit to finding it difficult to read code that is not in my style (for example the linux kernel), but that doesn't mean that the linux kernel is poorly formatted. – Richard Corden Sep 25 at 8:56
@Richard: Absolutely, but you're talking about what Alexandrescu and Sutter refer to as the "small stuff". Where you put your braced doesn't matter so much, but not indenting code blocks, or putting multiple statements on the one line (particularly throwing something short on the end of a long, complicated line), will lead to bugs. – Martin Sep 25 at 12:18
vote up 14 vote down

Rather than answering your question I will advise:

Don't let them do that.

Making their code readable for human beings is a part of programming, and you are fully justified in grading them on it. You might want to point them at the pretty printers listed in the other answers, however. Just to be nice.

link|flag
I don't have a choice. Its done by the online homework system. – chustar Sep 25 at 3:14
2  
Then your homework system needs to be fixed, acquiring good coding style is essential in our business so its good to learn early. – Anders Karlsson Sep 25 at 7:08
What is readable depends very much on the readers previous experience and what they're accustomed to. There are possibly a few concepts which overlap to all styles which might be worth enforcing, but it's much more important that the code does what it is supposed to do first. – Richard Corden Sep 25 at 9:02
Richard, I'm am certainly not suggestion "Use my brace style or else" which would be unreasonable and extreme. But it is fair to expect the code to be indented and possessed of a more-or-less consistent formatting. However, it sounds like the problem may be that student submissions are being mangled by the online tool, which means that the tool is broken. So: give the students a break for now, but make them learn how to use the tool successfully. – dmckee Sep 25 at 13:48
vote up 3 vote down

There is a gnu program called indent, usually shipped with linux but also available here (gnu indent) and available under Cygwin.

However, you are using VS, so you could use it to format code. They have hidden the feature just a bit: Edit -> Advanced -> Format Document, or Control/E, D.

link|flag
vote up 2 vote down

If you need to do this in batch mode, try using astyle, also available in the Cygwin installer.

link|flag
vote up 0 vote down

In Vim it's gg=G.

link|flag
This will correct indentation, but will not break lines. – dribeas Sep 26 at 11:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.