[ create a new paste ] login | about

stupid2

Name: Armin Fasold
Email:
Site/Blog: http://bebna.de
Location: Germany - Saxony
Default language: C
Favorite languages: Python, C
About:

Saved pastes by stupid2:

C++, pasted on Sep 11:
1
2
3
4
// C++ Libs
#include <string>
#include <iostream>
#include <vector>
...
view (95 lines, 366 lines of output)
C++, pasted on Jul 7:
1
2
3
4
// C++ Libs
#include <string>
#include <iostream>
#include <vector>
...
view (103 lines, 1461 lines of output)
C++, pasted on Jul 6:
1
2
3
4
// C++ Libs
#include <string>
#include <iostream>
#include <vector>
...
view (101 lines, 1461 lines of output)
Python, pasted on Jul 6:
1
2
3
4
5
#! -*- coding: utf-8 -*-
from random import randint
from datetime import date

lastThree = list()
...
view (44 lines, 365 lines of output)
Python, pasted on Nov 11:
1
2
3
4
5
for i in range(1,101):
  fizz = (i % 3 == 0) and "Fizz" or ""
  buzz = (i % 5 == 0) and "Buzz" or ""
  num  = (fizz == "" and buzz == "") and i or ""
  print "%s%s%s" % (num,fizz,buzz)
view (5 lines, 100 lines of output)