1. 程式人生 > >11、C++鍵盤輸入矩陣並列印結果

11、C++鍵盤輸入矩陣並列印結果

// 鍵盤輸入矩陣並列印結果
#include<stdio.h>
#include<string.h>
void main() 
{
    // 定義int型別的 2*2的二維陣列
    int A[2][2];
    // 定義迴圈計數器變數
    int icount, jcount;
    // 利用雙重迴圈遍歷輸出矩陣A
    printf("Please input the matrix A:\n");
    for (icount=0;icount<2;icount++)
    {
        for (jcount=0;jcount<2;jcount++)
        {
            scanf
("%d",&A[icount][jcount]); } } // 利用雙重迴圈遍歷輸出矩陣B printf("The Matrix A is:\n"); for (icount=0;icount<2;icount++) { for (jcount=0;jcount<2;jcount++) { printf("%8d",A[icount][jcount]); } printf("\n"); } }

結果:
這裡寫圖片描述