东北大学秦皇岛分校通信工程中外合作2020级C/CPP实验7

这篇博客涵盖了C/C++编程实验的内容,包括理解并运行给出的程序,将算法转化为C++代码,实现计算公里数的程序,编写返回两个数最大值和最小值的MinMax函数,以及创建返回绝对值的重载valabs函数和计算加权平均的wadd函数。实验要求提供运行截图并测试各个函数的功能。
摘要由CSDN通过智能技术生成

1.阅读下面的程序,在电脑中录入、运行,说明程序的功能(要有运行截图)
1.Read the following program, input it into computer, run it and interpret its functions
在这里插入图片描述

#include<iostream>
using namespace std;
int main()
{
   
	cout<<"Enter a degree in Celsius: ";
	double celsius;
	cin>>celsius;
	double fahrenheit=(9.0/5)*celsius+32;
	cout<<"Fahrenheit degree is "<<fahrenheit;
	return 0;
}

2.阅读下面的程序,在电脑中录入,说明程序的功能(要有运行截图)
2.Read the following program, input it into computer, run it and interpret its functions
在这里插入图片描述

#include<iostream>
using namespace std;

int main()
{
   
	cout<<"Enter the radius and length of a cylinder: ";
	double radius,length;
	cin>>radius>>length;
	
	double area=radius*radius*3.14159;
	
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值