- 博客(9)
- 收藏
- 关注
原创 Python中向列表添加元素的方法
1、使用append()方法 >>>names=["zhangsan","lisi","wangwu"] >>>names.append("zhaoliu") >>>names ["zhangsan","lisi","wangwu","zhaoliu"] 注意:添加的“zhaoliu"元素是添加在列表的末尾,并且每次只能添加单个元素。ap...
2019-07-11 11:12:29 1241
原创 Python中从列表中删除元素的三种方法
Python中从列表中删除元素的三种方法 names=[“zhangsan”,“lisi”,“wangwu”,“zhaoliu”] #定义列表 remove()方法需要指定待删除的元素: names.remove(“zhangsan”) #使用列表的remove()方法删除names列表中的某个元素 names [‘lisi’, ‘wangwu’, ‘zhaoliu’]...
2019-07-10 21:14:24 2373
原创 C++Primer Plus (第6版)中文版 第2章 2.7 编程练习 第7题
#include <iostream> using namespace std; // 编写一个程序,要求用户输入小时数和分钟数。在main()函数中,将这两个值传递给一个void()函数,后者以下面这样的格式显示这两个值 //Enter the number of hours:9 // Enter the number of minutes:28 //Time:9.28 void...
2018-05-03 09:50:48 292
原创 C++Primer Plus (第6版)中文版 第2章 2.7 编程练习 第6题
#include <iostream> using namespace std; // 编写一个程序,其main()调用一个用户定义的函数(以光年值为参数,并返回对应天文单位的值)。该程序按下面的格式要求用户输入光年值,并显示结果 //Enter the number of light years:4.2 //4.2 lights years =26608 astronomical u...
2018-05-03 09:42:31 212
原创 C++Primer Plus (第6版)中文版 第2章 2.7 编程练习 第5题
#include <iostream> using namespace std; // 编写一个程序,其中的main()调用一个用户定义的函数(以摄氏温度值为参数,并返回相应的华氏温度值) double CelsiusToFahrenheit(double); //声明调用函数原型 int main(){ double celsius,fahrenheit;//定义变量...
2018-05-03 09:35:50 295
原创 C++Primer Plus (第6版)中文版 第2章 2.7 编程练习 第4题
#include <iostream> using namespace std; // 编写一个程序,让用户输入其年龄,然后显示该年龄包含多少个月,如下所示:Enter your age:29 int ageToMonth(int); //声明调用函数原型 int main(){ int age,months; cout<<"Enter your age...
2018-05-03 09:27:39 178
原创 C++Primer Plus (第6版)中文版 第2章 2.7 编程练习 第3题
#include <iostream> using namespace std; // 编写一个C++程序,它使用3个用户定义的函数(包括main()函数,并生成下面的输出: //Three blind mice //Three blind mice //See how they run //See how they run void mice();//声明要调用的函数原型 voi...
2018-05-03 09:20:58 219
原创 C++Primer Plus (第6版)中文版 第2章 2.7 编程练习 第2题
#include <iostream> using namespace std; // 编写一个C++程序,它要求用户输入一个以long为单位的距离,然后将它转化为码(1long等于220码) int longsToYards(int);//声明要调用的函数原型 int main(){ int longs,yards;//定义变量longs和yards,代表以long和码为单位的变...
2018-05-03 09:15:43 244
原创 C++Primer Plus (第6版)中文版 第2章 2.7 编程练习 第1题
//编写一个C++程序,它显示您的姓名和地址#include <iostream> using namespace std; int main(){ cout<<"My name is lunbo!"<<endl; cout<<"My address is China!"<<endl; return 0; }
2018-05-03 08:39:16 113
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人