-
2075074·cpp·3.2 KB·2011-06-05 13:57 UTC
#include <iostream>
#include <cstdlib>
using namespace std;
void einlesen(int array[], int n){
cout << "Geben Sie nun die Zahlen ein:" << endl;
for(int i = 0; i < n; i++){
int input;
ci
-
2075071·cpp·2.5 KB·2011-06-05 13:54 UTC
#include <iostream>
using namespace std;
enum Monat {
Jan,Feb,Mrz,Apr,Mai,Jun,
Jul,Aug,Sep,Okt,Nov,Dez
};
struct Datum {
short tag;
enum Monat mon;
unsigned int jahr;
};
enum Art
-
2075070·text·1.8 KB·2011-06-05 13:48 UTC
BTW here is my little take on the question of black money stashed abroad based on my what I know from friends in the private banking world.
No industrial sits on cash; it is always invested - & not i
-
2075066·text·1.5 KB·2011-06-05 13:45 UTC
BTW here is my little take on the question of black money stashed abroad based on my what I know from friends in the private banking world.
No industrial sits on cash; it is always invested - & not i
-
2075059·cpp·1.4 KB·2011-06-05 13:18 UTC
.h
#include <windows.h>
#include <stdio.h>
#include <string.h>
#define MY_APP_ERROR_HDR ("Found a Error!")
#define NEED_IGNORE (1)
#define NEED_DEBUG (2)
char __stdcall _FASSERT(void* expr,
-
2075058·text·1.4 KB·2011-06-05 13:17 UTC
.h
#include <windows.h>
#include <stdio.h>
#include <string.h>
#define MY_APP_ERROR_HDR ("Found a Error!")
#define NEED_IGNORE (1)
#define NEED_DEBUG (2)
char __stdcall _FASSERT(void* expr,
-
2075053·text·934 B·2011-06-05 13:06 UTC
07:59:43.968502 IP (tos 0x0, ttl 64, id 11988, offset 0, flags [DF], proto TCP (6), length 60)
127.0.0.1.37375 > 127.0.0.1.8330: Flags [S], cksum 0x0cfd (correct), seq 500636784, win 32792, optio
-
2075052·text·934 B·2011-06-05 13:05 UTC
07:59:43.968502 IP (tos 0x0, ttl 64, id 11988, offset 0, flags [DF], proto TCP (6), length 60)
127.0.0.1.37375 > 127.0.0.1.8330: Flags [S], cksum 0x0cfd (correct), seq 500636784, win 32792, optio
-
2075050·text·174 B·2011-06-05 13:04 UTC
07:59:11.775402 IP (tos 0x0, ttl 64, id 57463, offset 0, flags [DF], proto TCP (6), length 64)
10.253.253.32.60214 > 10.253.253.28.8330: Flags [S], cksum 0x6bda (correct
-
2075047·text·5 B·2011-06-05 12:41 UTC
TUTTI
-
2075046·csharp·23.1 KB·2011-06-05 12:39 UTC
#requires -version 2.0
<#
.SYNOPSIS
Creates an EXE wrapper from a PowerShell script by compressing the script and embedding into
a newly generated assembly.
.DESCRIPTION
Creates an E
-
2075036·text·498 B·2011-06-05 12:07 UTC
Last login: Sun Jun 5 13:54:15 on ttys000
ves1-1x-dhcp184:~ glennkarlsen$ /rbinstall/mkamsboot-mac clppa.bin bootloader-clipplus.sansa patched.bin
mkamsboot Version 1.4
This is free software; see
-
2075032·text·243 B·2011-06-05 12:02 UTC
COOLER MASTER CMP-350 500W MidT ATX
ASUS P7H55/USB3 Intel H55 Soket 1156 DDR3 2200MHz (O/C) USB 3.0
INTEL Core i3 560 Soket 1156 3.33GHz 4MB Cache 32nm
KINGSTON 4GB (2*2GB) KIT DDR3 1333MHz CL9 Ram
-
2075031·text·244 B·2011-06-05 11:59 UTC
Last login: Sun Jun 5 13:52:47 on ttys000
ves1-1x-dhcp184:~ glennkarlsen$ cd rbinstall
ves1-1x-dhcp184:rbinstall glennkarlsen$ ls
bootloader-clipplus.sansa mkamsboot-mac
clppa.bin mkamsboot.dmg
-
2075030·text·66 B·2011-06-05 11:58 UTC
bootloader-clipplus.sansa mkamsboot-mac
clppa.bin mkamsboot.dmg
-
2075024·text·303 B·2011-06-05 11:45 UTC
(setq A '(1 2 3 4 5))
(setq newlist '())
(defun caesar (X newlist d)
(if (cdr X)
(progn
(push (+ (car X) d) newlist)
(caesar (cdr X) newlist d)
)
(push (+ (
-
2075021·java·3.6 KB·2011-06-05 11:39 UTC
package com.l2dc.gameserver.taskmanager;
import java.lang.ref.WeakReference;
import java.util.LinkedList;
import java.util.Stack;
import java.util.concurrent.ScheduledFuture;
import javolutio
-
2075020·text·3.6 KB·2011-06-05 11:38 UTC
package com.l2dc.gameserver.taskmanager;
import java.lang.ref.WeakReference;
import java.util.LinkedList;
import java.util.Stack;
import java.util.concurrent.ScheduledFuture;
import javolutio
-
2075018·text·3.8 KB·2011-06-05 11:38 UTC
package com.l2dc.gameserver.taskmanager;
import java.lang.ref.WeakReference;
import java.util.LinkedList;
import java.util.Stack;
import java.util.concurrent.ScheduledFuture;
import javolutio
-
2075017·text·221 B·2011-06-05 11:32 UTC
(setq A '(1 2 3 4 5))
(setq B '())
(defun caesar (X Y d)
(if (CDR X)
(proc
(caesar (CDR X) Y d)
(CONS '(+ (CAR X) d) 'Y)
)
(CONS '(+ (CAR X) d) 'Y)
)
)