Program 3 for語句簡單應用

2021-09-19 09:37:10 字數 1850 閱讀 2310

1. 將陣列a中的內容和陣列b中的內容進行交換。(陣列一樣大)

將陣列a中的內容和陣列b中的內容進行交換。(陣列一樣大)

#define _crt_secure_no_warnings

#include#includeint main()

for (int i = 0; i <= sizeof(a) / sizeof a[0]; i++)

printf("交換後陣列a:\n");

for (int i = 0; i < sizeof(a) / sizeof a[0]; i++)

printf("\n");

printf("交換後陣列b:\n");

for (int i = 0; i < sizeof(a) / sizeof a[0]; i++)

system("pause");

return 0;

}

將陣列a中的內容和陣列b中的內容進行交換。(陣列一樣大)

#define _crt_secure_no_warnings

#include#includeint main()

printf("輸入陣列b為: ");

for (i = 0; i <5; i++)

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

printf("交換後為陣列a: ");

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

printf("\n");

printf("交換後為陣列b: ");

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

printf("\n");

system("pause");

return 0;

}

2. 計算1/1-1/2+1/3-1/4+1/5 …… + 1/99 - 1/100 的值。

計算1 / 1 - 1 / 2 + 1 / 3 - 1 / 4 + 1 / 5 …… + 1 / 99 - 1 / 100 的值

#define _crt_secure_no_warnings

#include#includeint main()

printf("%f\n", sum);

system("pause");

return 0;

}

計算1 / 1 - 1 / 2 + 1 / 3 - 1 / 4 + 1 / 5 …… + 1 / 99 - 1 / 100 的值

#define _crt_secure_no_warnings

#include #include int main()

//計算偶數項的和

for (int i = 2; i <= 100; i = i + 2)

//相減輸出即可

printf("%f\n", sum1 - sum2);

system("pause");

return 0;

}

3. 編寫程式數一下 1到 100 的所有整數**現多少次數字9

//3. 編寫程式數一下 1到 100 的所有整數**現多少次數字9

#define _crt_secure_no_warnings

#include#includeint main()

}printf("9次數為: %d\n", cout);

system("pause");

return 0;

}

今天暫時就分享這麼多,謝謝**^_^

javase簡單入門3 控制流語句

學習筆記 一 控制流語句 1.順序結構 程式自上而下一行一行執行,中間沒有判斷或跳轉 2.分支結構 if語句和switch語句 a.單路分支 b.雙路輸出 c.多路輸出 d.switch語句 3.迴圈結構 4.跳轉 二 流程圖 利用圖型顯示程式的執行的過程 橢圓 開始或結束 框 平行四邊形 輸入框 ...

mysql簡單語句 mysql簡單語句

建立名為user的資料庫 create database user 顯示所有資料庫 show databases 選擇名為user的資料庫 use user 顯示所有表 show tables 建立名為mytable的表 mysql create table mytable username var...

mysql簡單語句 mysql簡單語句

建立名為user的資料庫 create database user 顯示所有資料庫 show databases 選擇名為user的資料庫 use user 顯示所有表 show tables 建立名為mytable的表 mysql create table mytable username var...