程式設計序生成一張從英呎到公尺的轉換表

2021-06-09 13:17:43 字數 1260 閱讀 1215

#include

#include

#include

using namespace std;

int main( )

{int i,j;

cout<<"         inch2meter:"<0&&j%9==0)//換行

cout《執行結果:

inch2meter:

0              1            2            3             4          5             6           7            8             9

0  0.000     0.300    0.610    0.910    1.220    1.520    1.830    2.130     2.440    2.74

1  3.051     3.351    3.661    3.961    4.271    4.571    4.881    5.181     5.491    5.79

2  6.102     6.402    6.712    7.012    7.322    7.622    7.932    8.232     8.542    8.84

3  9.153     9.453    9.763  10.063  10.373  10.673  10.983  11.283  11.593  11.89

4 12.204 12.504  12.804  13.114  13.414  13.724  14.024  14.334  14.634  14.94

5 15.245 15.555  15.855  16.165  16.465  16.775  17.075  17.385  17.685  17.99

6 18.296 18.606  18.906  19.216  19.516  19.826  20.126  20.436  20.736  21.04

7 21.347 21.657  21.957  22.267  22.567  22.877  23.177  23.487  23.787  24.09

8 24.398 24.708  25.008  25.308  25.618  25.918  26.228  26.528  26.838  27.13

9 27.449 27.749  28.059  28.359  28.669  28.969  29.279  29.579  29.889  30.18

press any key to continue

將一張表的查詢結果插入到另一張表

select into 和 insert into select 兩種表複製語句 2select into desttbl from srctbl34 insert into desttbl fld1,fld2 select fld1,5 from srctbl56 以上兩句都是將 srctbl 的...

sql語句將一張表中的某一列插入到另一張表中

如下兩張表student和course 現在想要將course表的cname列插入到student表中。有兩種方法 方法一 語句如下 alter table student add cname varchar 50 注意這裡新增加的列資料型別要與course表中cname資料型別一致 執行後stud...

從mysqldump的備份檔案中恢復一張表

有時需從mysqldump備份檔案恢復一張表的資料,通常有兩種做法 1 將整個檔案匯入測試server中,再mysqldump匯出需要的表,再匯入線上server。如果庫的量很少,這樣倒是也不慢,可當庫的量有一定的級別了,就會很慢。很可能備份時使用了壓縮,再需要解壓縮的步驟。2 通過mysql sh...