Qache


liczba pkt:
liczba pkt od innych uzytkownikow:
liczba zaakceptowanych prac: 0
4 1156 Mighty C Qache 2018-11-21 16:14:39 not approved
Maybe this is the final form
                    #include<stdio.h>
main(){int a;srand(&a);for(a=rand()%249+8;--a;printf("%c",rand()%94+33));}
click to show comments
2 812 Mighty C Qache 2018-11-21 10:07:34 not approved
Even shorter C code
                    #include<stdio.h>
main(){int a;srand(&a);char b[a=rand()%249+8];for(int i=0;i<a;b[i++]=rand()%94+33);puts(b);}
click to show comments
2 650 Mighty C Qache 2018-11-20 21:50:50 not approved
Quick and short C code
                    #include<stdio.h>
main(){int c;srand(&c);int a=rand()%249+8;char b[a];for(int i=0;i<a;b[i++]=rand()%94+33);printf("%s",b);}
click to show comments
-2 22676 Bash Qache 2018-11-20 15:44:16 not approved
This generator is non deterministic and I do not guarantee the expected result
                    vim tryToExitThis.txt
click to show comments