-
2092538·text·449 B·2011-10-22 13:26 UTC
module Main where
main::IO()
main = undefined
pow1 :: (Num a1, Num a) => a -> a1 -> a
pow1 b e
| (b == 0) = 0
| (e == 0) = 1
| otherwise = b * (pow1 b (e - 1))
pow2 :: (Num a, Fracti
-
2092535·diff·2.3 KB·2011-10-22 13:17 UTC
--- mkvdts2ac3.sh 2011-10-14 19:26:47.000000000 +0200
+++ mkvdts2ac3-ffmpeg.sh 2011-10-22 14:24:43.000000000 +0200
@@ -42,6 +42,7 @@
COMP="none"
WD="/tmp" # Working Directory (Use the -w/--wd ar
-
2092529·text·6.7 KB·2011-10-22 12:38 UTC
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <string>
#include <stdio.h>
using namespace std;
struct Res;
struct Node {
char id;
-
2092520·text·5.6 KB·2011-10-22 11:51 UTC
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <string>
#include <stdio.h>
using namespace std;
struct Res;
struct Node {
char id;
-
2092519·text·454 B·2011-10-22 11:50 UTC
#include <iostream>
#include <vector>
#include <map>
#include <multiset>
using namespace std;
struct Res {
Res() : valeur(1.0) { }
double valeur;
Node *a, *b;
bool operator<(const
-
2092516·text·3.2 KB·2011-10-22 11:31 UTC
#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <vector>
#include <climits>
using namespace std;
struct Balle {
float vitesse;
float position;
int numero;
bool c
-
2092511·text·596 B·2011-10-22 11:00 UTC
12:56 -NickServ(NickServ@services.)- You are already logged in as hendrik.
12:56 -!- hendrik [~hendrik@stendhalgame.org]
12:56 -!- ircname : Hendrik Brummermann
12:56 -!- channels : #arianne
-
2092507·text·1.6 KB·2011-10-22 10:34 UTC
void reduceRes(multiset<Res*>& res, vector<Res*>& resToReduce)
{
Node* newA = resToReduce[0]->a;
Node* newB = resToReduce[0]->b;
// Do some clean up
res.erase(resToReduce[0]);
double re
-
2092506·text·874 B·2011-10-22 10:32 UTC
Dear Maciek!
It was great to hear from you. I'm writing to thank you so much for your offer to help my friend. my friend Gabi will arrive on 1st November this year. She will arrive at the X airport.
-
2092505·text·777 B·2011-10-22 10:25 UTC
Twój znajomy wyjeżdża do kraju X I twój inny znajomy w kraju X obiecał pomoc mu/jej w pierwszych dniach: (odbiór z lotniska, zakwaterowanie,pomoc w znalezieniu pracy). Napisz odpowiedź na jej/jego lis
-
2092496·text·2.9 KB·2011-10-22 09:29 UTC
#include <iostream>
#include <stdio.h>
#include <vector>
#include <climits>
using namespace std;
struct Balle {
int vitesse;
int position;
int numero;
};
struct Scenario {
std::ve
-
2092494·text·2.2 KB·2011-10-22 09:22 UTC
#include <iostream>
#include <string>
#include <vector>
using namespace std;
bool lastLine = false;
class Character
{
public:
Character(int pos):position(pos){}
void moveUp()
{
p
-
2092493·text·2.8 KB·2011-10-22 09:19 UTC
#include <iostream>
#include <stdio.h>
#include <vector>
#include <climits>
using namespace std;
struct Balle {
int vitesse;
int position;
int numero;
};
struct Scenario {
std::ve
-
2092475·text·430 B·2011-10-22 08:44 UTC
void hodnoty()
{
printf("\n\t\t\tVytajte v hre kocky.\n\n");
printf("Zadajte svoje meno: ");
scanf("%s", &meno);
int test_cisla=0, bank;
while (test_cisla == 0)
{
prin
-
2092474·text·1015 B·2011-10-22 08:32 UTC
2011.10.22 08:26:00
Victim: F4LLCON
Corp: The Warp Core Stabilizers
Alliance: The 0rphanage
Faction: Unknown
Destroyed: Myrmidon
System: 6-CZ49
Security: -0.2
Damage Taken: 29103
Involved
-
2092473·text·9.4 KB·2011-10-22 08:29 UTC
/*File: ship2.cxx
Written by: Emily Cai (emilyrune@hotmail.com)
October 20th, 2011
The purpose of this program is to graw a gravitational field of 3 stars.*/
//----------------------------
-
2092472·text·3.0 KB·2011-10-22 08:28 UTC
#include <iostream>
#include <vector>
using namespace std;
struct Balle {
int vitesse;
int position;
bool collided;
};
struct Scenario {
std::vector<Balle> balles;
int track
-
2092469·text·992 B·2011-10-22 08:15 UTC
2011.10.22 08:15:00
Victim: Matt vb
Corp: Wildly Inappropriate
Alliance: Unknown
Faction: Unknown
Destroyed: Nightmare
System: 6-CZ49
Security: -0.2
Damage Taken: 76067
Involved parties:
-
2092452·text·675 B·2011-10-22 06:51 UTC
#include <iostream>
#include <vector>
#define _USE_MATH_DEFINES
#include <math.h>
#include <string>
using namespace std;
int main ()
{
double aireTotale = 0.0;
vector<double> angles;
-
2092432·text·2.1 KB·2011-10-22 06:17 UTC
#include <iostream>
#include <vector>
#include <string>
using namespace std;
struct item {
int c, f, p, o, nbUses;
string name;
};
int bestWeight = INT_MAX;
vector<int> bestChoice;
v