开始学习C++
今天是开通博客记录学习历程的第一篇。最近一段时间重新抓起C++进行学习。学习书目“C++ primer PLUS",编辑器是在线编辑Leetcode(该编辑器对cin不支持的样子)
2.4.3 用户定义的函数
#include <iostream>
#include <cmath>
void simon(int);//声明语句是语句要加分号!
int main() {
using namespace std;
simon(3);
int count;
cin >> count;
simon(count);
cout << "Done!" << endl;
return 0;
}
void simon(int n) //函数定义不是语句,不需要加分号;函数头,接受一个参数,返回一个值(void类型)
{
using namespace std;
cout << "Simon says touch you toes " << n << "times"<< endl;
}//函数体,结合函数头为一个原型。
2.4.5 Using namespace std;
将 using namespace std放在最前面,之后的函数都能使用名称空间std中所有的元素。
练习:
2 单位转换
#include <iostream>
#include <cmath>
double LenMa(double LenLong);
int main() {
using namespace std;
double LenLong = 5;//变量必须在使用前声明,和matlab/python不同。
double Lenma = LenMa(LenLong);
cout << LenLong << " long " << "is " << Lenma << " Ma" << endl;
return 0;
}
double LenMa(double LenLong)
{
return 200*LenLong;
}
3 语句输出
#include <iostream>
#include <cmath>
using namespace std;
void Out1(int n);
void Out2(int n);
int main() {
using namespace std;
int n = 2;
int m = 2;
Out1(n);
Out2(m);
return 0;
}
void Out1(int n)
{
for(int i = 1;i<=n;i++)
cout << "Three blind mice" << endl;
}
void Out2(int n)
{
for(int i = 1;i<=n;i++)
cout << "See how they run" << endl;
}
4 单位转化
#include <iostream>
#include <cmath>
using namespace std;
double Temptrans(double n);
int main() {
cout << "Please enter a Celsius value:";
double n;
cin >> n;
cout << n << endl;
cout << n << " degrees Celsius is " << Temptrans(n) << " degrees Fahrenheit" << endl;
}
double Temptrans(double n)
{
return(1.8*n+32.0);
}
7 数值输出
#include <iostream>
#include <cmath>
using namespace std;
void Timeout(int n ,int m);
int main() {
int hour;
int minute;
cout << "Enter the number of hours:";
cin >> hour;
cout << hour << endl;
cout << "Enter the number of minutes: ";
cin >> minute;
cout << minute << endl;
Timeout(hour , minute);
return 0;
}
void Timeout(int hour ,int minute)
{
cout << "Time: " << hour << ":" << minute <<endl;
}
上一篇: vue+axios+mock.js环境搭建的方法步骤
下一篇: 前端程序员容易忽视的一些基础知识
推荐阅读
-
opencv进阶学习笔记10:图像金字塔和图像梯度
-
C++基础学习一(基础之基础)
-
Python学习笔记(10)-Python进阶10-字典与集合
-
C++ 模板常见特性(函数模板、类模板)
-
C++ —— 非类中使用const定义常量的初始化,以及#define和typedef的区别
-
学习python的第十七天(二分法,有名函数,匿名函数,内置函数)
-
学习python的第十八天(模块导入及使用,关键字,模块搜索路径,python文件的两种用途)
-
用Python爬取了拉勾网的招聘信息+详细教程+趣味学习+快速爬虫入门+学习交流+大神+爬虫入门
-
Javascript学习笔记二 之 变量_基础知识
-
Redis 学习 redis 下载 redis 集群 redis可视化工具