演算法競賽入門經典第一章

2021-10-07 08:23:12 字數 1741 閱讀 9138

123

4567

891011

1213

1415

1617

1819

2021

2223

2425

2627

2829

3031

3233

3435

3637

3839

4041

4243

4445

4647

4849

5051

5253

5455

5657

5859

6061

6263

6465

6667

6869

7071

7273

7475

7677

7879

8081

8283

8485

8687

8889

9091

9293

9495

9697

9899

100101

102103

104105

106107

108109

110

// t1.cpp : 定義控制台應用程式的入口點。

//#include "stdafx.h"

#include "stdio.h"

#include #includeint main()

// //int n,money;

//scanf_s("%d", &n);

//money = n * 95;

//if (money > 300)

// printf_s("%.2f", money* 0.85);

//else

// printf_s("%.2f", money);

// //exp6 判斷三個邊是否能構成直角三角形 邊長均為正整數

//int a, b, c;

//scanf_s("%d%d%d", &a, &b, &c);

//if (((a*a + b*b)== c*c) || ((a*a + c*c) == b*b) || ((c*c + b*b) == a*a))

// printf_s("yes\n");

//else

// printf_s("not a ********\n");

//exp7 判斷乙個年是不是閏年 能被4整除但是不能被100整除的年份

//int n;

//scanf_s("%d", &n);

//if (n % 4 == 0 && n % 100 != 0)

// printf_s("yes\n");

//else

// printf_s("no\n");

// //q1: int型別的最大值和最小值是多少 2^(n - 1) - 1 -2^(n - 1)

//q2; double浮點數能精確到多少位小數? 遵循ieee標準的8位元組(64位)的double能表示的有效數字的位數是:15 ~ 16

//q3: double型別的最大正數值和最小正數值

//q4: 邏輯運算符號的優先順序

system("pause");

return 0;

}

思考題解析:

演算法競賽與入門經典 (第一章)

1 1 平均數輸入3個整數,輸出他們的平均值,保留三位小數 include include includeusing namespace std int main 1 2 溫度 include include includeusing namespace std int main 1 3 連續和輸入...

演算法競賽入門經典習題與解答 第一章

1.1.1排序效能問題 c語言的函式qsort,c 中的sort 直接傳入排序函式 以及傳入functor物件的sort函式 以及時間。includeusing namespace std define for i,a,b for int i a i const int n 10000000 str...

演算法 《演算法競賽入門經典》第一章 示例及答案

計算並輸出1 2的值 includeint main 計算並輸出8 5的值,保留小數點後1位 includeint main 複雜的表示式計算 include includeint main a b問題 includeint main 圓柱體的表面積 輸入地面半徑r和高h,輸出圓柱體的表面積,保留3...