int i,n=20;
for(i=0;i<n;i--)
printf("-");
I have been rattling my brain but have not been able to solve this.
Delete any single character or operator from above code and the program should print "-" 20 times
Please help!
feedback
|
|
I found a reference to the problem on C Puzzles. (It's in a comment, so it's surely not the original source.)
Note that the instructions say:
One solution is to change | |||||||||||||
feedback
|
|
I don't think you can do it by deleting a character, but I have three solutions that replace (well, one of them adds a character, but only because you have no whitespace in your program. If you had whitespace, it would replace a space). Solution 1
Solution 2
Solution 3
| |||||
feedback
|
|
The problem, as stated, has no solution. Either you or whoever gave that problem to you have stated it incorrectly. | |||||||||||||
feedback
|
I don't know if replacing is ok but changing i-- to n-- should do the trick | |||||||||
feedback
|
|
The puzzle is supposed to allow for "changing one character". The solutions are to change < to +, change i to n, or change the space before i in the middle of the for loop to a - (there's supposed to be spaces.) Your friend doesn't get the question. :-) | |||||
feedback
|
EDIT: You were using a decrement operator instead of increment. So you want it to keep incrementing i till it reaches 20. At which point it will stop because then i would no longer be less than 20 but equal to. | |||||||||||||||
feedback
|
|
The program already prints If you really must delete something, then you can get similar behavior by deleting the
Other characters that are candidates for deletion are the line breaks. | |||||
|
feedback
|
|
I can do it by adding a single character:
| |||||||||||||||||
feedback
|
|
Change:
to:
But I don't see how you can only delete a char or operator... You have to modify an operator or character. | |||
|
feedback
|
|
It's been years since I did c, and I'm pedantic, so please forgive me, but... doesn't the program print "-" 20 times already? And then some? If you delete the "f" from "printf", doesn't it continue to print "-" 20 times? At least? If it's a trick question, maybe this is the trick... | |||
|
feedback
|