Skip to content

Instantly share code, notes, and snippets.

View penut85420's full-sized avatar
😎
I Love Oppai!

PenutChen penut85420

😎
I Love Oppai!
  • Graduate Student of National Taiwan Ocean University
  • New Taipei, Taiwan
View GitHub Profile
<?xml version="1.0" encoding="utf-8"?>
<TOPICSET>
<TOPIC>
<SENTENCE>禿頭除與家族史有關,</SENTENSE>
<SEGMENTATION>
<SEGSEQ id="1">禿頭 除 與 家族史 有關 ,</SEGSEQ>
<SEGSEQ id="2">禿頭 除 與 家族史 有 關 ,</SEGSEQ>
<SEGSEQ id="3">禿頭 除 與 家族 史 有關 ,</SEGSEQ>
<SEGSEQ id="4">禿頭 除 與 家族 史 有 關 ,</SEGSEQ>
<SEGSEQ id="5">禿頭 除 與 家 族 史 有關 ,</SEGSEQ>
[
{
"id": "1",
"type": "大吉",
"poem": "七寶浮圖塔,高峰頂上安,眾人皆仰望,莫作等閒看",
"explain": "就像出現了用美麗寶石做成的佛塔般地,似乎會有非常好的事情。因為能改用放眼萬事的立場,可以得到周圍的人們的信賴吧。合乎正道的你的行為,能被很多人的認同及鼓勵。不用隨便的態度看事情,用正確的心思會招來更多的好的結果。",
"result": {
"願望": "會充分地實現吧。",
"疾病": "會治癒吧。",
"盼望的人": "會出現吧。",
#include <stdio.h>
int main() {
int pre[128], now[128], h, i, j;
printf("How many layers: ");
scanf("%d", &h);
for (i = 1; i <= h; i++) {
for (j = 0; j < h - i; j++)
@penut85420
penut85420 / apcs_c295.c
Created October 21, 2018 07:16
APCS-2016-1029-2最大和
#include <stdio.h>
int main() {
int m, n, i, arr[20], j, t;
scanf("%d %d", &n, &m);
for (i = 0; i < n; i++)
for (arr[i] = j = 0; j < m; j++) {
scanf("%d", &t);
#include <stdio.h>
int main() {
char c, f[32], sum_float[32] = 0;
int n, d, t, i, sum_int = 0;
while (scanf("%c", &c) != EOF) {
n = c - '0';
while (scanf("%c", &c) && c != ':')
n = n * 10 + c - '0';
@penut85420
penut85420 / d018.c
Last active October 22, 2018 03:27
#include <stdio.h>
int main() {
char c, f[32], sum_float[32] = 0;
int n, d, t, i, sum_int = 0;
while (scanf("%c", &c) != EOF) {
n = c - '0';
while (scanf("%c", &c) && c != ':')
n = n * 10 + c - '0';
#include <stdio.h>
#include <stdlib.h>
const char * suitSymbol[] = {"♣", "♦", "♥", "♠"};
const char rankSymbol[] = "JQKA";
void shuffle(int[], int);
void printCard(int);
void countSuit(int[], int[]);
void countRank(int[], int[]);
https://ideone.com/BFIu7Y
@penut85420
penut85420 / tarot.json
Created November 3, 2018 15:28 — forked from ajzeigert/tarot.json
tarot.json
{
"tarot": [
{
"name": "The Fool",
"suite": "major",
"image": "deck/RWS_Tarot_00_Fool.jpg",
"description": "With light step, as if earth and its trammels had little power to restrain him, a young man in gorgeous vestments pauses at the brink of a precipice among the great heights of the world; he surveys the blue distance before him-its expanse of sky rather than the prospect below. His act of eager walking is still indicated, though he is stationary at the given moment; his dog is still bounding. The edge which opens on the depth has no terror; it is as if angels were waiting to uphold him, if it came about that he leaped from the height. His countenance is full of intelligence and expectant dream. He has a rose in one hand and in the other a costly wand, from which depends over his right shoulder a wallet curiously embroidered. He is a prince of the other world on his travels through this one-all amidst the morning glory, in the keen air. The sun, which shines behind him, knows whence he came, whi

If width is a and height is b.

int **c;
c = (int**) malloc (sizeof(int*) * b);
for (int i = 0; i < b; i++)
    c[i] = (int*) malloc (sizeof(int) * a * 3);