摘要: #include <iostream>#include <math.h>using namespace std; //计算二维平面上随机两个点的坐标void compute(float x1, float y1, float x2, float y2){ // sqrt()是math.h头文件中求开 阅读全文
posted @ 2020-01-04 16:54 TyranRex 阅读(394) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std; // 前n项(1 到 n)累加求和void sum(int n){ int counts = 0; for (int i = 1; i <= n; i++) counts += i; printf("前%d个数求和的结果 阅读全文
posted @ 2020-01-04 16:37 TyranRex 阅读(2272) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std; // 华氏温度与摄氏温度的转换(封装成函数)// 1. 华氏温度(Fahrenheit degree)转摄氏温度(Celsius) void FtoC(float tetemperature){ printf("当前华氏 阅读全文
posted @ 2020-01-04 15:53 TyranRex 阅读(1953) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <math.h>using namespace std; int main(){ float x, y, z; cin >> x >> y >> z; float avg = (x + y + z) / 3; printf("%.3f", av 阅读全文
posted @ 2020-01-03 21:00 TyranRex 阅读(753) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdio.h>#include <stdlib.h>using namespace std;// 三数排序--从大到小void sort(float x, float y, float z){ if (x > y) { if (x > z) 阅读全文
posted @ 2020-01-03 20:32 TyranRex 阅读(277) 评论(0) 推荐(0) 编辑
摘要: #define pi 3.1415926 // 宏定义π#include <iostream>using namespace std;// 输入半径和高,求圆面积和体积int main(){ double r, h; // 半径和高 cin >> r >> h; double s = 2 * pi 阅读全文
posted @ 2019-12-23 16:54 TyranRex 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 最简单算法第二贴! 阅读全文
posted @ 2019-11-20 00:10 TyranRex 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 算法竞赛更新第一帖! 阅读全文
posted @ 2019-11-19 23:12 TyranRex 阅读(499) 评论(0) 推荐(0) 编辑