Help for this page

Select Code to Download


  1. or download this
    import std.file;
    
    ...
        printf( "\n" );
        return 0;
    }
    
  2. or download this
    #include <stdlib.h>
    
    ...
        printf( "\n" );
        return 0;
    }
    
  3. or download this
    for( $i=0; $i<99; $i++ ){ 
        printf( "123456789 " ) 
    ...
        printf( "xx\t" ) 
    }
    printf( "\n" );;
    
  4. or download this
    print join ' ', ('123456789') x 99; 
    print join "\t", ('xx') x 125;;