码迷,mamicode.com
首页 > 编程语言 > 详细

C语言小练习二

时间:2016-12-10 19:44:25      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:++   打印   turn   题目   功能   小练习   include   nbsp   --   

题目要求:

编程实现功能:将4行4列数组的左下三角设置为下图所示的数据。
4
3 7
2 6 9
1 5 8 10

程序源码:

 1 #include <stdio.h>
 2 
 3 int main(void)
 4 {
 5     int i, j; 
 6     int a[4][4] = {
 7         0
 8     };
 9     int n = 0;
10 
11     // 填充二维数组
12     for(j = 0; j < 4; j++)
13     {
14         for(i = 3; i >= j; i--)
15         {
16             a[i][j] = ++n;
17         }
18     }        
19 
20     // 打印二维数组
21     for(i = 0; i < 4; i++)
22     {
23         for(j = 0; j < 4; j++)
24         {
25             printf("%d ", a[i][j]);
26         }
27         printf("\n");
28     }
29 
30     return 0;
31 }

 

C语言小练习二

标签:++   打印   turn   题目   功能   小练习   include   nbsp   --   

原文地址:http://www.cnblogs.com/wisdom2016/p/6156124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!