summaryrefslogtreecommitdiffstats
path: root/inf/zotks/2/sn2.c
diff options
context:
space:
mode:
Diffstat (limited to 'inf/zotks/2/sn2.c')
-rw-r--r--inf/zotks/2/sn2.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/inf/zotks/2/sn2.c b/inf/zotks/2/sn2.c
new file mode 100644
index 0000000..d919a95
--- /dev/null
+++ b/inf/zotks/2/sn2.c
@@ -0,0 +1,28 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <math.h>
+int main (int argc, char ** argv) {
+ /* bom pa tko, če nisem sposoben */
+ /* NEVER EVER DO THIS */
+ char c[128];
+ char *p = fgets(c, 128, stdin);
+ p++;
+ unsigned long long int i = strtoll(c, NULL, 10);
+ i++;
+ int cast = 0;
+label:
+ sprintf(c, "%llu", i);
+ int k = strlen(c);
+ for (int j = 0; j < k; j++) {
+ if (c[j] == c[j+1]) {
+ i += pow(10, k-(j+2));
+ fprintf(stderr, "cd: %llu\n", i);
+ // cast = pow(10, k-(j+2));
+ // i -= i % cast;
+ goto label;
+ }
+ }
+ fprintf(stdout, "%llu\n", i);
+ return 0;
+}