C 語言實例 – 表格形式輸出數(shù)據(jù)
C 語言實例 - 表格形式輸出數(shù)據(jù)
將 1~100 的數(shù)據(jù)以 10x10 矩陣格式輸出。
實例
#include <stdio.h>
int main() {
int i, j, count;
for(i = 1; i <= 10; i++) {
for(j = i; j <=100; j += 10 )
printf(" %3d", j);
printf("\n");
}
return 0;
}
運行結(jié)果:
1 11 21 31 41 51 61 71 81 91 2 12 22 32 42 52 62 72 82 92 3 13 23 33 43 53 63 73 83 93 4 14 24 34 44 54 64 74 84 94 5 15 25 35 45 55 65 75 85 95 6 16 26 36 46 56 66 76 86 96 7 17 27 37 47 57 67 77 87 97 8 18 28 38 48 58 68 78 88 98 9 19 29 39 49 59 69 79 89 99 10 20 30 40 50 60 70 80 90 100
等差數(shù)列輸出 10x10 矩陣格式。
實例
#include <stdio.h>
int main() {
int i, j, count;
int start, end;
start = 2, end = 10;
for(i = start; i <= end; i++) {
count = i;
for(j = 1; j <= 10; j++) {
printf(" %3d", count*j);
}
printf("\n");
}
return 0;
}
運行結(jié)果:
2 4 6 8 10 12 14 16 18 20 3 6 9 12 15 18 21 24 27 30 4 8 12 16 20 24 28 32 36 40 5 10 15 20 25 30 35 40 45 50 6 12 18 24 30 36 42 48 54 60 7 14 21 28 35 42 49 56 63 70 8 16 24 32 40 48 56 64 72 80 9 18 27 36 45 54 63 72 81 90 10 20 30 40 50 60 70 80 90 100
乘法運算格式。
實例
#include <stdio.h>
int main() {
int i, j, n;
n = 3;
j = 1;
for(i = n; i <= (n*10); i+=n) {
printf("%3d x %2d = %3d\n", n, j, i);
j++;
}
return 0;
}
運行結(jié)果:
3 x 1 = 3 3 x 2 = 6 3 x 3 = 9 3 x 4 = 12 3 x 5 = 15 3 x 6 = 18 3 x 7 = 21 3 x 8 = 24 3 x 9 = 27 3 x 10 = 30
相關(guān)文章
- C語言如何解決QString與QByteArray互相轉(zhuǎn)換的問題
- C++中的可移植性和跨平臺開發(fā)教程詳解
- 深入解析C++中多態(tài)性和虛函數(shù)使用原理
- C語言常用占位符的使用小結(jié)
- C語言結(jié)構(gòu)體指針的具體使用
- C++中的字符串編碼處理方法
- C語言完數(shù)的實現(xiàn)示例
- C++?requires關(guān)鍵字簡單介紹
- Visual Studio 遠程調(diào)試步驟
- .Net Core 集成 Kafka的步驟
- 如何使用簽名保證ASP.NET MVC OR WEBAPI的接口安全
- asp.net core MVC之實現(xiàn)基于token的認證
- .NET 開源配置組件 AgileConfig的使用簡介
- .NET之生成數(shù)據(jù)庫全流程實現(xiàn)
- IIS部署ASP.NET5的實現(xiàn)步驟
- ASP.NET Core中間件初始化的實現(xiàn)
- 關(guān)于.net環(huán)境下跨進程、高頻率讀寫數(shù)據(jù)的問題
- ASP.NET Core 文件響應(yīng)壓縮的常見使用誤區(qū)
- .net core 使用阿里云分布式日志的配置方法
- asp.net core為IHttpClientFactory添加動態(tài)命名配置