摘要: #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) 编辑