c++学习记录
敢敢呀
这个作者很懒,什么都没留下…
展开
-
c++求三位数的水仙花数
c++求三位数的水仙花数 #include <iostream> using namespace std; void daffodil() { int num = 100; do { int a = num / 100;//百位 int b = (num / 10) % 10;//十位 int c = num % 10;//个位 int temp = a*a*a + b*b*b + c*c*c;//表示a的b次方power(a,b),需头文件math.h if (te原创 2021-07-16 19:31:53 · 757 阅读 · 0 评论 -
c++猜数练习
c++猜数游戏练习 #初学者,个人的练习记录,如有建议,请不吝赐教。 #include <iostream> using namespace std; #include<ctime> void GuessNumber(int i) { char s; //生成随机数 srand((unsigned int)time(NULL));//系统时间做随机数种子 int num = rand() % 100 + 1;//rand()%100的取值范围[0,99] //cout &原创 2021-07-16 18:50:26 · 134 阅读 · 0 评论