程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Ural319(輸出格式)

Ural319(輸出格式)

編輯:C++入門知識

Ural319(輸出格式)


 

 

解題思路:

分別從右上角和左下角考慮,和姐姐跟我說的上一題差不多·····

 

完整代碼:

 

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include
#include 
using namespace std;
typedef long long LL;
const int MOD = int(1e9)+7;
const int INF = 0x3f3f3f3f;
const double EPS = 1e-9;
const double PI = acos(-1.0); //M_PI;
const int maxn = 101;
int g[maxn][maxn];
int main()
{
    #ifdef DoubleQ
    freopen(in.txt,r,stdin);
    #endif
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    int n;
    while(cin >> n)
    {
        int key = 1;
        for(int k = n ; k >= 1 ; k --)
        {
            int i = 1;
            int j = k;
            g[i][j] = key;
            key ++;
            while(i + 1 <= n && j + 1 <= n)
            {
                j ++;
                i ++;
                g[i][j] = key;
                key ++;
            }
        }
        key = n * n;
        for(int k = 1 ; k <= n - 1 ; k ++)
        {
            int i = n;
            int j = k;
            g[i][j] = key;
            key --;
            while(i - 1 >= 1 && j - 1 >= 1)
            {
                i --;
                j --;
                g[i][j] = key;
                key --;
            }
        }
        for(int i = 1 ;i <= n ; i ++)
        {
            for(int j = 1; j <= n ; j ++)
            {
                cout << g[i][j] <<  ;
            }
            cout << endl;
        }
    }
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved