输入两个数(a,b),随机输出十个在a与b之间的数
#include <bits/stdc++.h>
using namespace std;
int main( ) {
int c, j, r;
cin >> c >> j;
srand((unsigned)time(nullptr));
for (int i = 0; i < 10; i++) {
r = rand() % c + j - c;
cout << r << endl;
}
cout << " * # * #* " << endl;
cout << " * #恭 * *喜 #*您 " << endl;
cout << "* # 做*对*# **了 *" << endl;
cout << " * # * # * " << endl;
cout << " * * * # *" << endl;
return 0;
}
🚒🎇🚒🎇🚒🎇🚒
4891

被折叠的 条评论
为什么被折叠?



