搜索结果
查询Tags标签: cai,共有 5条记录-
#python&函数定义及概述
函数:对某一个特定的功能或者代码块进行封装,在需要使用该功能的时候直接调用即可 定义: def 函数的名字(): 被封装的功能或者代码块 ->函数体 调用: 函数的名字() 好处:让程序更加简洁、高效。 代码更加合理 def buy_cai(): # 定义函数 print(“1. 打车”) print…
2022/1/24 11:06:11 人评论 次浏览 -
C++不限制猜测次数的猜数字小游戏
不知道算不算小游戏,感觉还挺有意思的 ***涉及到了随机数的产生,以系统时间为种子产生随机数 #include <iostream> #include <ctime> using namespace std;int main() { srand((unsigned int)time(NULL));int num=(rand()%100)-1;int cai=0;while(1){cout…
2021/10/28 20:42:18 人评论 次浏览 -
C++不限制猜测次数的猜数字小游戏
不知道算不算小游戏,感觉还挺有意思的 ***涉及到了随机数的产生,以系统时间为种子产生随机数 #include <iostream> #include <ctime> using namespace std;int main() { srand((unsigned int)time(NULL));int num=(rand()%100)-1;int cai=0;while(1){cout…
2021/10/28 20:42:18 人评论 次浏览 -
PAT-B1015(C/C++代码解析)
1015 德才论 (25 分) 注:排序题 #include <stdio.h> #include <algorithm> struct student{int id;int de;int cai; }; using namespace std;bool cmp (student a,student b) {if (a.cai+a.de!=b.cai+b.de)return a.de+a.cai>b.de+b.cai;else if (a.de!…
2021/9/16 14:04:57 人评论 次浏览 -
PAT-B1015(C/C++代码解析)
1015 德才论 (25 分) 注:排序题 #include <stdio.h> #include <algorithm> struct student{int id;int de;int cai; }; using namespace std;bool cmp (student a,student b) {if (a.cai+a.de!=b.cai+b.de)return a.de+a.cai>b.de+b.cai;else if (a.de!…
2021/9/16 14:04:57 人评论 次浏览