Cel
Używając wybranego języka programowania, napisz najkrótszy program, aby wyeliminować komentarze z ciągu znaków reprezentującego program C.
Wejście
Ciąg może być traktowany jako dowolna forma wprowadzania, ale może być również traktowany jako zmienna.
Instrukcje
Należy usunąć dwa różne rodzaje komentarzy:
- komentarze wielowierszowe , zaczynające się
/*
i kończące na*/
- komentarze jednowierszowe , zaczynające się
//
i kończące na łamaniu wierszy w stylu Linux (LF\n
)
Komentarze w ciągach nie mogą być usuwane. Na potrzeby tego wyzwania wystarczy rozważyć "
-delimitowane ciągi. W szczególności możesz zignorować możliwość '
literałów znakowych. Możesz także zignorować trygrafy i kontynuacje linii ( /\<LF>*...
).
Przykłady
Wejście:
#include <stdio.h>
int main(int argc, char** argv)
{
// this comment will be removed
if (argc > 1) {
printf("Too many arguments.\n"); // this too will be removed
return 1;
}
printf("Please vist http://this.will.not.be.removed.com\n");
printf("/* This will stay */\n");
printf("\"/* This will stay too */\"\n");
printf("//and so will this\\");
// but not this
printf("just \"ano//ther\" test.");
return 0;
}
Wynik:
#include <stdio.h>
int main(int argc, char** argv)
{
if (argc > 1) {
printf("Too many arguments.\n");
return 1;
}
printf("Please vist http://this.will.not.be.removed.com\n");
printf("/* This will stay */\n");
printf("\"/* This will stay too */\"\n");
printf("//and so will this\\");
printf("just \"ano//ther\" test.");
return 0;
}
Wejście:
/*
this shall disappear
*/
#include <string>
int main(int argc, char** argv)
{
string foo = ""/*remove that!**/;
// Remove /* this
int butNotThis = 42;
// But do */ remove this
int bar = 4 /*remove this*/* 3; // but don't remove that 3. */
return 0;//just a comment
}/*end of the file has been reached.*/
Wynik:
#include <string>
int main(int argc, char** argv)
{
string foo = "";
int butNotThis = 42;
int bar = 4 * 3;
return 0;
}
// this comment will be removed
. Jakaś reguła?
printf("\"/* This will stay too */\"\n");
pojawiło, powinno stać się kodem?