博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++开学第一次作业(5.4)
阅读量:4956 次
发布时间:2019-06-12

本文共 743 字,大约阅读时间需要 2 分钟。

开学第一次作业(5.4)

题目

Create a program that asks for the radius of a circle and prints the area of that circle, using cin and cout.

The whole program shouldbedividedinto two source files (.cpp).
Hand in the source files and the head files which youcreate

主函数

#include 
#include"area.h"using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char** argv){ double r; cin >> r; cout << area(r) << endl; return 0;}

外部函数

#include"area.h"double area(double r){    cout << r*r*PI ;}

头文件

#include
#include
#define PI acos(-1)using namespace std;double area(double r);

转载于:https://www.cnblogs.com/Anani-leaf/p/5463657.html

你可能感兴趣的文章
大图居中,以1920px为例
查看>>
Python3 图片转字符画
查看>>
[C陷阱和缺陷] 第7章 可移植性缺陷
查看>>
人需要治愈
查看>>
linux中configure文件默认执行结果所在位置
查看>>
Spring MVC例子
查看>>
jmeter 断言
查看>>
玩玩小爬虫——抓取时的几个小细节
查看>>
error C4996: 'fopen'
查看>>
Windows向Linux上传文件夹
查看>>
20180104-高级特性-Slice
查看>>
6个SQL Server 2005性能优化工具介绍
查看>>
nginx启动、关闭命令、重启nginx报错open() "/var/run/nginx/nginx.pid" failed
查看>>
day14 Python 内置函数、匿名函数和递归函数
查看>>
BZOJ 3097 Hash Killer I
查看>>
UINavigationController的视图层理关系
查看>>
html阴影效果怎么做,css 内阴影怎么做
查看>>
宏观经济
查看>>
译:面试投行的20个Java问题
查看>>
综合练习:词频统计
查看>>