博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeBlocks调试功能(转)
阅读量:5976 次
发布时间:2019-06-20

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

转自:

http://blog.csdn.net/sxhelijian/article/details/15026159







示例代码:

[cpp]
  1. #include <iostream>  
  2. using namespace std;  
  3. const double pi=3.1415926;  
  4. int main( )  
  5. {  
  6.     float r,a;  
  7.     cout<<"输入半径:"<<endl;  
  8.     cin>>r;  
  9.     a=pi*r*r;  
  10.     cout<<"输出面积:";  
  11.     cout<<a<<endl;  
  12.     return 0;  
  13. }  
  14.   
  15. float volume(float h,float r)  
  16. {  
  17.     return pi*r*r*h;  
  18. }  





实践代码:

[cpp]
  1. #include <iostream>  
  2. using namespace std;  
  3. const double pi=3.1415926;  
  4. int main( )  
  5. {  
  6.     int a;  
  7.     cout<<"请输入一个数:"<<endl;  
  8.     cin>>a;  
  9.     if(a = 2)  
  10.         cout<<"你2了。";  
  11.     else  
  12.         cout<<"你不2。";  
  13.     return 0;  
  14. }  

 




示例代码:

[cpp]
  1. #include <iostream>  
  2. using namespace std;  
  3. const double pi=3.1415926;  
  4. float area(float r);  
  5. int main( )  
  6. {  
  7.     float r1,a1;  
  8.     cin>>r1;  
  9.     a1=area(r1);  
  10.     cout<<a1<<endl;  
  11.     return 0;  
  12. }  
  13. float area(float r)  
  14. {  
  15.     float a;  
  16.     a = pi*r*r;  
  17.     return a;  
  18. }  

 




实践代码:

[cpp]
  1. #include <iostream>  
  2. using namespace std;  
  3. float max(float x, float y);  
  4. int main ()  
  5. {  
  6.     float a,b,c;  
  7.     cin>>a>>b;  
  8.     c=max(a, b) ;  
  9.     cout<<"The max is "<<c<<endl;  
  10.     return 0;  
  11. }  
  12. float max(float x, float y)  
  13. {  
  14.     float z;  
  15.     z=(x<y)? x : y ;  
  16.     return  z;  
  17. }  

 




示例代码:

[cpp]
  1. #include<iostream>  
  2. #include<cmath>  
  3. using namespace std;  
  4. int max(int,int);  
  5. int main( )  
  6. {  
  7.     int m,a,b;  
  8.     a=100;  
  9.     b=200;  
  10.     m=max(a,b);  
  11.     cout<<"最大:"<<m<<endl;  
  12.     return 0;  
  13. }  
  14. int max(int x,int y)  
  15. {  
  16.     int z;  
  17.     if(x>y)  
  18.         z=x;  
  19.     else  
  20.         z=y;  
  21.     return z;  
  22. }  

 



实践代码:

[cpp]
  1. #include <iostream>  
  2. using namespace std;  
  3. float max(float x, float y);  
  4. int main ()  
  5. {  
  6.     float a,b,c;  
  7.     cin>>a>>b;  
  8.     c=max(a, b) ;  
  9.     cout<<"The max is "<<c<<endl;  
  10.     return 0;  
  11. }  
  12. float max(float x, float y)  
  13. {  
  14.     float z;  
  15.     z=(x<y)? x : y ;  
  16.     return  z;  
  17. }  

 



 

转载于:https://www.cnblogs.com/XDJjy/p/3888834.html

你可能感兴趣的文章
网络营销第七课(1):制定SEO计划(网站相关数据分析)
查看>>
nginx rewrite 参数和例子
查看>>
mysqldump命令
查看>>
github上传代码步骤
查看>>
利用express搭建一个restful api 服务器
查看>>
(转)调整.NET控件WebBrowser的默认浏览器内核版本
查看>>
[导入]让你的WAP网站有更好的兼容性
查看>>
.NET Exceptionless 本地部署踩坑记录
查看>>
TOMCAT 的 CONTEXT
查看>>
航电OJ-2544最短路
查看>>
CF772E Verifying Kingdom
查看>>
POJ 3417 Network
查看>>
雨林木风U盘装系统综合教程
查看>>
V-by-one
查看>>
让我欲罢不能的node.js
查看>>
python3基础知识学习记录
查看>>
10年.NET老程序员推荐的7个开发类工具
查看>>
C#核心编程结构(2)
查看>>
rename设计思想(Perl版)
查看>>
第二次冲刺 第七天
查看>>