博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
circle area
阅读量:6429 次
发布时间:2019-06-23

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

circle area

Github 链接:


本次作业要求

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 should be divided into two source files (.cpp).Hand in the source files and the head files which you create.


main.cpp

#include
#include"print.h" using namespace std;int main(){ double r; cin >> r; Printf(r); return 0;}

print.h

#include
#define pi 3.1415926using namespace std; void Printf(double r){ cout << pi*r*r << endl;}

体会

懂得了在不用创建工程的情况下调用自己写好的头文件,这样能更好的让逻辑分块。进一步更好的解决逻辑复杂的问题

885799-20160505233505607-1221259757.jpg

转载于:https://www.cnblogs.com/fzuljz/p/5463877.html

你可能感兴趣的文章
使用Sbo用户自定义业务对象
查看>>
快速学习命令的方法
查看>>
无线领军企业的5G之路
查看>>
如何建立软件企业的核心技术能力
查看>>
谈谈网站防盗链
查看>>
计算机存储单位
查看>>
linux下安装配置nagios监控
查看>>
安装VS2008关于解决磁盘已满问题方案.
查看>>
CCNA之随写概述
查看>>
解决Azure Stack App Service部署报错一例
查看>>
使用配置文件安装SQL Server 2008服务器
查看>>
正则表达式||grep的使用
查看>>
AD应用系列之一——重置AD还原密码
查看>>
F#简明教程二:F#类型系统和类型推断机制
查看>>
ISA2004 发布内部TCP/IP打印机
查看>>
Communicator不能多人通讯问题
查看>>
Nginx之开门见山
查看>>
WsusAgent检测脚本
查看>>
Windows XP \Windows 2003启动过程的学习及故障分析处理(六c)
查看>>
PCL中分割_欧式分割(1)
查看>>