c语言(杨辉三角形)2017.4.23
#include int yanghui(int x, int y) { int z; if (y == 1 || y == x) return 1; else { z = c(x - 1, y - 1) + c(x - 1, y)...
Free Open Share