#define _CRT_SECURE_NO_WARNINGS 1标签:10,数字,int,num,main,usenum,cout From: https://blog.51cto.com/u_15699887/5967942
using namespace std;
#include<iostream>
#include<ctime>
#include<cmath>
//1、猜数字
//int main()
//{
// srand((unsigned int)time(NULL));
// int lucknum = rand() % 100 + 1;
// int usenum = 0;
//
// while (1)
// {
// cout << "请输入你要猜的数字:>" << endl;
// cin >> usenum;
//
// if (usenum > lucknum)
// cout << "猜大了" << "\n";
// else if (usenum < lucknum)
// cout << "猜小了" << "\n";
// else
// {
// cout << "恭喜你,猜对了";
// break;
// }
// }
// return 0;
//}
//2、水仙花数
//int main()
//{
// int num = 0;
// int a, b, c;
// for (num = 100; num < 1000; num++)
// {
// a = num / 100;
// b = num / 10 % 10;
// c = num % 10;
// /*if (a * a * a + b * b * b + c * c * c == num)
// {
// cout<<num<<endl;
// }*/
// if (pow(a, 3) + pow(b, 3) + pow(c, 3) == num)
// {
// cout << num << endl;
// }
// }
// system("pause");
// return 0;
//}
//3、敲7游戏
//int main()
//{
// for (int i = 1; i < 100; i++)
// {
// if (i % 7 == 0 || i / 10 == 7 || i % 10 == 7)
// {
// cout << "敲7" << endl;
// }
// else
// {
// cout << i << endl;
// }
// }
// system("pause");
// return 0;
//}
//4、乘法口诀表
//int main()
//{
// int i, j;
// for (i = 1; i <= 9; i++)
// {
// for (j = 1; j <= i; j++)
// {
// cout << j << "*" << i << "=" << i * j << "\t";
// }
// cout << endl;
// }
// system("pause");
// return 0;
//}