Skip to content

Instantly share code, notes, and snippets.

View DANISSIMO9699's full-sized avatar

Daniele DANISSIMO9699

  • Rome
View GitHub Profile
program somma_array;
uses crt, math;
var
a:array[1..5] of integer;
i,s:integer;
begin
clrscr;
for i:=1 to 5 do
begin
randomize;
@DANISSIMO9699
DANISSIMO9699 / chords.java
Last active July 5, 2016 06:56
code for my app that needs to be fixed
//my ChordsListActiviy aka MainActivity
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.widget.ImageButton;