打印相应数字三角形
摘要:
读入N,S两个自然数(0 <= S, N <= 9), 打印相应的数字三角形(其中,S表示确定三角形的第一个数,N表示确定三角形的行数)。例:当N = 4, S = 3时打印:3(首位数为奇数)4 56 7 89 1 2 3当N = 4, S = 4时打印:(首位数为偶数) 4 6 5 9 8 7 4 3 2 1#include <stdio.h>/* This function is used to reverse the output */void reverse(int num[], int cnt){ int pre, last ... 阅读全文
posted @ 2012-09-10 21:05 初级业余程序员 阅读(1422) 评论(0) 推荐(0) 编辑