摘要: 1 /*描述 2 把分数按下面的办法排成一个数表。 3 4 1/1 1/2 1/3 1/4..... 5 2/1 2/2 2/3.... 6 3/1 3/2 .... 7 4/1..... 8 ......... 9 我们以z字型方法给上表的每项编号。特定方法:第一项是1/1,然后是1/2、2/1、3/1、2/2、1/3、1/4、2/3……。10 编程输入项号N(130 #include31 int main()32 {33 int m;34 scanf("%d",&m);35 while(m--)36 {37 int n, ... 阅读全文