编写一个 函数把华氏温度转化为 摄氏温度,转换公式用递归的方法 编写 函数求Fibonacci级数。编写函数求两个数的最大公约数和最小公倍数

Posted Roam-G

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写一个 函数把华氏温度转化为 摄氏温度,转换公式用递归的方法 编写 函数求Fibonacci级数。编写函数求两个数的最大公约数和最小公倍数相关的知识,希望对你有一定的参考价值。

 编写一个 函数把华氏温度转化为 摄氏温度,转换公式:C=(F-32)*5/9

//编写一个 函数把华氏温度转化为 摄氏温度,转换公式:C=(F-32)*5/9
#include<iostream>
#include<cmath>
using namespace std;

double Transform(double F) {
	return (F - 32) * 5 / 9;
}

int main() {

	double F;
	cout << "请输入华氏温度F:" << endl;
	cin >> F;
	cout << "转换为华氏温度F:" << Transform(F) << endl;
	return 0;
}

使用系统函数pow(x,y),计算x的y次方

#include <iostream>
#include <cmath>
using namespace std;


int main() {
	int x = 0, y = 0;
	cout << "请输入x和y:" << endl;
	cin >> x >> y;
	cout << "x 的 y 次方为:" << pow(x, y) << endl;

	return 0;
}

编写函数求两个数的最大公约数和最小公倍数

#include <iostream>
#include <cmath>
using namespace std;

//函数声明  最大公约数
int fn1(int i, int j);

int main() {
	int i, j, x, y;
	cout << "Please enter a int number:" << endl;
	cin >> i;
	cout << "Please enter a another int number :" << endl;
	cin >> j;
	x = fn1(i, j);
	//最小公倍数=两者乘积/最大公约数
	y = i * j / x;
	cout << i << " and " << j << "的最大公约数是:" << x << endl;
	cout << i << " and " << j << "的最小公倍数是:" << y << endl;

	return 0;
}
int fn1(int i, int j) {
	int temp;
	//让 j 始终是最小的数
	if (i < j) {
		temp = i;
		i = j;
		j = temp;
	}
	while (j != 0) {
		//j 存 大数  对 小数 取余的结果。一直到 j =0。就算出 最大公约数来了
		temp = i % j;
		i = j;
		j = temp;
	}
	return i;
}

用递归的方法 编写 函数求Fibonacci级数。

#include <iostream>
using namespace std;

int fib(int n);
int main()
{
	int n, answer;
	cout << "Enter number: ";
	cin >> n;
	cout << "\\n\\n";
	answer = fib(n);
	cout << answer << " is the " << n << "th Fibonacci number\\n";
	return 0;
}

int fib (int n)
{
	cout << "Processing fib(" << n << ")... ";
	if (n < 3 )
	{
		cout << "Return 1!\\n";
		return (1);
	}
	else
	{
		cout << "Call fib(" << n-2 << ") and fib(" << n-1 << ").\\n";
		return( fib(n-2) + fib(n-1));
	} 
}

以上是关于编写一个 函数把华氏温度转化为 摄氏温度,转换公式用递归的方法 编写 函数求Fibonacci级数。编写函数求两个数的最大公约数和最小公倍数的主要内容,如果未能解决你的问题,请参考以下文章

怎样写用热敏电阻测温度的程序?我用单片机AD测的热敏电阻的AD值,怎样把数字量转换成温度?急求。

华氏温度转化成摄氏温度计算

华氏温度转化成摄氏温度计算

C++程序设计练习题

温度转换程序

练习2-4 温度转换 (5 分)