Skip to content

Instantly share code, notes, and snippets.

View elct9620's full-sized avatar
💦
Level up!!!

蒼時弦也 elct9620

💦
Level up!!!
View GitHub Profile
@elct9620
elct9620 / gist:1524052
Created December 27, 2011 15:39
PHP Switch 新用法
<?php
$array = array('type', 'apple');
switch(true){
case in_array('apple', $array):
echo 'Have Apple';
case in_array('mango', $array):
echo 'Have Mongo';
default:
}
@elct9620
elct9620 / gist:1345250
Created November 7, 2011 15:14
C++ sort array
void descArray(int *arr, int size){
int temp;
int loopRun = floor(size/2);
for(int i = 0; i < loopRun; i++){
temp = arr[size - i];
arr[size - i] = arr[i];
arr[i] = temp;
}
}