導航:首頁 > 編程語言 > javasetw

javasetw

發布時間:2025-01-01 15:04:14

java poi如何設置word的頁面的大小和水平方向

首先你要在文檔頁設置一個統一的節點。最好在文檔的開始設置。

CTSectPrsectPr=XWPFDocument.getDocument.getBody.addNewSectPr();
CTPageSzpgSz=sectPr.addNewPgSz();
通過pgSz設置寬內度/高度和紙張容方向
//設置橫板
pgSz.setW(BigInteger.valueOf(15840));
pgSz.setH(BigInteger.valueOf(11907));
pgSz.setOrient(STPageOrientation.LANDSCAPE);
//設置豎版
pgSz.setH(BigInteger.valueOf(15840));
pgSz.setW(BigInteger.valueOf(11907));
pgSz.setOrient(STPageOrientation.PORTRAIT);

㈡ 編寫程序, 編寫程序,隨機生成10個兩位整數, 用冒泡法將它們從小到大進行排序

#include <iostream>
#include <stdlib.h>
#include <time.h>
#include <iomanip>
using namespace std;
int main()
{
int i,j,t;
int a[10];
srand(time(NULL));
cout<<"隨機生成10個兩位整數:";
for(i=0;i<10;i++)
{
a[i]=10+rand()%90;
cout<<setw(3)<<a[i];
}
cout<<endl;
for(i=0;i<10;i++)
{
for(j=i+1;j<10;j++)
{
if(a[j]<a[i])
{
t=a[j];
a[j]=a[i];
a[i]=t;
}
}
}
cout<<"用冒泡法將它們從小到大進行排序版:";
for(i=0;i<10;i++)
{
cout<<setw(3)<<a[i];
}
return 0;
} 運行結果截圖權:

㈢ 怎樣用java實現數字向右對齊

用格抄式襲化輸出就行了吧:
System.out.printf("%4.0f : 1\n",1.0);
System.out.printf("%4.0f : 10\n",10.0);
System.out.printf("%4.0f : 100\n",100.0);
System.out.printf("%4.0f : 1000\n",1000.0);

㈣ 用java語言編寫追趕法求解n階三對角方程組

可以這樣寫,代碼如下


#include "pch.h"

#include <iomanip>

#include <iostream>

# include <fstream>

#include <iomanip>

#include <math.h>

void Chasing_method(double **a, double *b, double *xx, int N_num);

using namespace std;

//*****************************

//追趕法求解AX=B矩陣

//*****************************

void Chasing_method(double **a, double *b, double *xx, int N_num)

{

int i, j, k;

double *gamma = new double[N_num]();

double *alpha = new double[N_num]();

double *beta = new double[N_num]();

double *y = new double[N_num]();

alpha[0] = a[0][0];

beta[0] = a[1][0] / alpha[0]; y[0] = b[0] / alpha[0];

for (i = 1; i < N_num; i++)

{

gamma[i] = a[i - 1][i];

alpha[i] = a[i][i] - gamma[i] * beta[i - 1];

if (i < N_num - 1)

{

beta[i] = a[i + 1][i] / alpha[i];

}

y[i] = (b[i] - gamma[i] * y[i - 1]) / alpha[i];

}

xx[N_num - 1] = y[N_num - 1];

for (i = N_num - 2; i >= 0; i--)

{

xx[i] = y[i] - beta[i] * xx[i + 1];

}

}

int main()

{

int N_num = 4;

double **a = new double*[N_num]();

for (int i = 0; i < N_num; i++) //AX=B方程a[n][n]為系數矩陣

a[i] = new double[N_num]();

double *b = new double[N_num](); //AX=B方程b[n]為右側列矩陣

double *x = new double[N_num](); //AX=B方程x[n]為方程解

ifstream fin("ab.txt");

for (int i=0; i < N_num; i++)

{

for (int j=0; j < N_num; j++)

{

fin >> a[i][j]; //讀取數

cout << fixed << setw(8) << setprecision(4) << a[i][j];

}

fin >> b[i];

cout << fixed << setw(8) << setprecision(4) << b[i] << endl;

}

Chasing_method(a, b, x, N_num);

cout << "追趕法求得方程組解為:" << endl;

for (int i = 0; i < N_num; i++)

{

cout<<"x["<<i<<"]=" << fixed << setw(8) << setprecision(4) << x[i] << endl;

}

}

閱讀全文

與javasetw相關的資料

熱點內容
win10系統縮放在哪裡設置 瀏覽:438
粉碎流氓軟體提示找不到文件夾 瀏覽:840
微信七萬多步怎麼走的 瀏覽:315
會使用數據分析能為公司做什麼 瀏覽:97
ppt加網路視頻 瀏覽:231
office微軟侵犯版權文件格式 瀏覽:180
手機百度老彈出升級 瀏覽:650
微信認證客服 瀏覽:600
win7系統寬頻自動連接設置教程 瀏覽:268
csystem刪除文件夾 瀏覽:701
aecs6漢化程序怎麼用 瀏覽:858
linux查找oracle安裝路徑 瀏覽:391
除了百度之外還有什麼搜索app 瀏覽:908
win7重裝使用舊用戶配置文件 瀏覽:981
word文檔刪除後打不開文件 瀏覽:40
提取游戲文件的軟體 瀏覽:175
基因編程是哪個專業 瀏覽:492
img的配置文件 瀏覽:422
f16的solidworks教程 瀏覽:797
iphone6如何設定睡眠模式 瀏覽:455

友情鏈接