Skip to content

Instantly share code, notes, and snippets.

View viniciustaveira's full-sized avatar

Vinícius Taveira viniciustaveira

View GitHub Profile
@viniciustaveira
viniciustaveira / xampp_php7_xdebug.md
Last active February 25, 2018 09:33 — forked from odan/xampp_php7_xdebug.md
Installing Xdebug for XAMPP

Installing Xdebug for XAMPP with PHP 7.x

Requirements

Setup

@viniciustaveira
viniciustaveira / xampp_php7_xdebug.md
Created February 25, 2018 09:25 — forked from odan/xampp_php7_xdebug.md
Installing Xdebug for XAMPP

Installing Xdebug for XAMPP with PHP 7.x

Requirements

Setup

#include <stdio.h>
#include <math.h>
int main(){
int d, vf, vg, safe_waters = 12;
float tf, tg, dg;
scanf("%i", &d);
while(d){
scanf("%i %i", &vf, &vg);
#include <stdio.h>
int main(){
int n, m, pares = 0, repeticao[31], i;
char L, combinacoes[31];
for(i = 0; i <= 30; i++) repeticao[i] = 0;
scanf("%i", &n);
do{
#include <stdio.h>
int main(){
int n, m, pares = 0, repeticao[62], i, caso_valido = 0;
char L, combinacoes[62];
for(i = 30; i <= 60; i++){
repeticao[i] = 0;
}