Panel użytkownika
Nazwa użytkownika:
Hasło:
Nie masz jeszcze konta?

Pokręcone programy

Ostatnio zmodyfikowano 2010-12-26 19:48
Autor Wiadomość
ison
» 2010-11-10 17:43:30
@pekfos
In function `void drstr(std::string)':
name lookup of `a' changed for new ISO `for' scoping
using obsolete binding at `a'
break statement not within loop or switch
At global scope:
expected unqualified-id before "if"
expected `,' or `;' before "if"
expected declaration before '}' token
P-23816
pekfos
» 2010-11-10 18:07:28
teraz działa. coś się przy kopiowaniu rozwaliło.

//(zginęły 2 nawiasy klamrowe)
P-23820
McAffey
» 2010-11-10 22:38:36
@pekfos Hahaha świetne xD Wrażenia jak na matrixie ;P
P-23839
ison
» 2010-11-10 23:15:23
w takim razie dorzucę swojego Hello worlda ;)
C/C++
#include <cstdio>
#include <string>
#include <windows.h>
#define _ int
#define __ for
#define _________ unsigned
#define _______ ++
#define ________ "\b \b\b"
const char ____[] = { 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x00 };
_ main() {
    _ ___ = 0x00;
    __( _________ _ _____ = 0x00; _____ < strlen( ____ ); _______ _____ ) {
        __( _ ______ = 0x00; ______ <( 1 << 8 ) - 186 - ___; _______ ______ )
        putchar( ' ' );
        __( _ ______ = 0x00; ______ <( 2 << 7 ) - 187 - ___; _______ ______ ) {
            printf( ________ );
            putchar( ____[ ___ ] );
            Sleep(( 1 << 3 ) - 1 ); }
        _______ ___; }
    Sleep( 1000 );
}
P-23841
McAffey
» 2010-11-10 23:53:28
@ison hahaha również czadowe ;P ludzka wyobraźnia nie przestaje mnie zaskakiwać, kto by pomyślał, że na tak wiele sposobów można upiększyć naszego "Hello Worlda" xD
P-23844
Drraven
» 2010-11-30 17:35:47
C/C++
#include <iostream>
using namespace std; char h[ 2 ] = { "h" }; char e[ 2 ] = { "e" }; char l[ 2 ] = { "l" }; char l2[ 2 ] = { "l" }; char o[ 2 ] = { "o" }; char space[ 2 ] = { " " }; char w[ 2 ] = { "w" }; char o2[ 2 ] = { "o" }; char r[ 2 ] = { "r" }; char d[ 2 ] = { "d" }; char wykrzytnik[ 2 ] = { "!" }; int main() { cout << h; cout << e; cout << l; cout << l2; cout << o; cout << space; cout << w; cout << o2; cout << r; cout << d; cout << wykrzytnik; return 0; }
Taka oszczędność lini kodu xd
P-24674
Dragonit
» 2010-11-30 18:23:14
Hello World w 366 językach !!!

http://www.roesler-ac.de/wolfram/hello.htm

Coś pięknego :)

P-24676
pekfos
» 2010-11-30 18:39:31
@pekfos Hahaha świetne xD Wrażenia jak na matrixie ;P

matrix, powiadasz? take this:

C/C++
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <conio.h>
#include <windows.h>


void hello_matrix() { srand( time( NULL ) ); char txt[ 12 ] = "hello world"; char render[ 12 ] = { 0x0 }; bool end = false; while( !end ) { printf( "\r" ); end = true; for( int a = 0; a < 11; ++a ) { if( render[ a ] != txt[ a ] ) { render[ a ] = char( rand() % 0x100 ); end = false; } if( render[ a ] == 10 ) putchar( 0x20 ); else if( render[ a ] == '\t' ) putchar( ' ' ); else if( render[ a ] == 7 ) putchar( ' ' ); else putchar( render[ a ] ); } Sleep( 0x78 ); } }

int main() {
    hello_matrix();
    getch();
    return 0;
}

//edit: jak ma się szczęście to z krzaków szybko wyłoni się hello world. w przeciwnym razie może to trochę potrwać..
P-24677
1 « 2 » 3
Poprzednia strona Strona 2 z 3 Następna strona