心理学類 山田 一夫
強い恐怖を感じるような出来事を経験した後、
\newfontfamily\vhiragino[Vertical=RotatedGlyphs]{ヒラギノ明朝 Pro W3} | |
\rotatebox{-90}{\vhiragino あああああ} |
#include <stdio.h> | |
void swap_array(int a[], int x, int y) | |
{ | |
int t = a[x]; | |
a[x] = a[y]; | |
a[y] = t; | |
} |
#include <stdio.h> | |
void plus_minus(int *a, int *b) | |
{ | |
int t1 = *a, | |
t2 = *b; | |
*a = t1 + t2; | |
*b = t1 - t2; | |
} |
\documentclass{jarticle} | |
\makeatletter | |
\def\tuple#1{% | |
\begingroup | |
\newcount\@fuck@i | |
\newcount\@fuck@ii | |
\@fuck@i = -1 | |
\@fuck@ii = 0 |
#include <stdio.h> | |
float sum_array (float array[], int n) { | |
float a = 0.0; | |
int i; | |
for (i=0; i<n; i++) | |
a += array[i]; | |
return a; |
#include <stdio.h> | |
void swap_array (int a[], int i, int j) { | |
int t = a[i]; | |
a[i] = a[j]; | |
a[j] = t; | |
} | |
int main () { |
#include <stdio.h> | |
void plus_minus (int *a, int *b) { | |
int a_ori = *a, | |
b_ori = *b; | |
*a = a_ori + b_ori; | |
*b = a_ori - b_ori; | |
} |
inorder (reflect t) = rev (inorder t) について | |
(i) t = Lf の時、成り立つことを示せばよい。 | |
<左辺> = inorder (reflect Lf) | |
= inorder Lf reflectの定義より | |
= [] inorderの定義より | |
<右辺> = rev (inorder Lf) | |
= rev Lf inorderの定義より |