2010年6月13日 星期日

作業十五:迷宮換路徑

/* 程式範例: Ch5-4-1.c */
#include <stdio.h>
#include <stdlib.h>

2010年6月8日 星期二

作業十四:儲存多項式

/* 程式範例: Ch4-6.c */
#include <stdio.h>
#include <stdlib.h>

struct Node {               /* Node節點結構 */
   float coef;  int exp;    /* 結構變數宣告 */
   struct Node *next;       /* 指向下一個節點 */
};

2010年6月6日 星期日

猜數字遊戲,幾A幾B的那種《指標版》

#include <stdlib.h>
#include <stdio.h>
#include <time.h>

猜數字遊戲,幾A幾B的那種《結構版》

#include <stdlib.h>
#include <stdio.h>
#include <time.h>

猜數字遊戲,幾A幾B的那種《陣列版》

#include <stdlib.h>
#include <stdio.h>
#include <time.h>
int is_in(char *a,int n);