Skip to content

Instantly share code, notes, and snippets.

View jordi-petit's full-sized avatar

Jordi Petit jordi-petit

View GitHub Profile
@jordi-petit
jordi-petit / p1.cc
Created September 13, 2017 10:17
2017-09-13
/* Descomposició horària. */
#include <iostream>
using namespace std;
int main() {
int n; // Declaració de la variable d'entrada
cin >> n; // Lectura de l'entrada
int h = n / 3600; // Càlcul del nombre d'hores
int m = (n % 3600) / 60; // Càlcul del nombre de minuts
@jordi-petit
jordi-petit / p1.cc
Last active April 26, 2018 07:25
AP1 2017-09-12
// Hello world
#include <iostream>
using namespace std;
int main() {
cout << "Bon dia a tothom" << endl;
}
@jordi-petit
jordi-petit / lib1.coffee
Last active November 4, 2016 15:38
Sample ArchLib with coffee
mod1 = (w, x, y) ->
name: "mod1"
call: "mod1 #{w} #{x} #{y}"
ports:
in:
type: 'input'
width: w
out:
type: 'output'