- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在做一项作业,我必须创建一个程序:
显示标题for (voterCount = 0; voterCount < numVoters; voter++)
使用随机数生成器来:
生成 bYear(限制在 1900 到 2000 之间)
生成 bMonth
生成 bDay(限制 1 和 31)
我有前 4 个:
#include <iostream>
#include <cstdlib>
#include <time.h>
using namespace std;
int main()
{
int numVoters;
char name[35]; // Variable that stores "Name" of user added max char to be 25
const int MIN_MONTH = 1;
const int MAX_MONTH = 12;
int bMonth;
cout << "Please enter your first name: ";
cin.getline(name,35); // used getline because without getline I kept getting a single char
cout << "Hello " << name << endl;
cout << "Please enter amount of voters: ";
cin >> numVoters;
while (numVoters > 0)
{
cout << "You entered: " <<numVoters << endl;
}
cout << "ERROR! ERROR! WRONG DATA TYPE PLEASE RUN THE PROGRAM
AGAIN";
return 0;
}
我不知道下一步该做什么我试图继续使用我在网上看到的内容,但是当我这样做时,我得到了一个永无止境的选民数量循环
#include < iostream >
#include < cstdlib >
#include < time.h >
using namespace std;
int main() {
int numVoters;
char name[35]; // Variable that stores "Name" of user added max char to be 25
const int MIN_MONTH = 1;
const int MAX_MONTH = 12;
int bMonth;
cout << "Please enter your first name: ";
cin.getline(name, 35); // used getline because without getline I kept getting a single char
cout << "Hello " << name << endl;
cout << "Please enter amount of voters: ";
cin >> numVoters;
while (numVoters > 0) {
cout << "You entered: " << numVoters << endl;
}
cout << "ERROR! ERROR! WRONG DATA TYPE PLEASE RUN THE PROGRAM AGAIN";
unsigned seed = time(0); // gets current computer time
srand(seed); // seeds the random number gen
for (numVoters = 0; numVoters < 0; numVoters++)
{
bMonth = rand() % (MAX_MONTH - MIN_MONTH + 1) + MIN_MONTH;
cout << "Random month: " << bMonth << endl;
}
return 0;
}
帮助#5-7
最佳答案
while (numVoters > 0)
{
cout << "You entered: " <<numVoters << endl;
}
cout << "ERROR! ERROR! WRONG DATA TYPE PLEASE RUN THE PROGRAM
AGAIN";
上面的代码说的是,只要 numVoters 大于 0,就不停地输出 numVoters。你需要的是 if else
语句,正如你想说的,如果投票人数大于0,输出投票人数,继续做任务5,6,7。否则,你要输出error。在伪代码中:
if (numVoters > 0) {
output numVoters
do tasks 5,6,7
}
else {
output error
return 0
}
或者如果 numVoters 等于或小于 0,您可以输出错误并退出程序。将任务 5、6、7 的代码放在 if 循环之后,这样只有在没有错误的情况下才会执行:
if (numVoters =< 0) {
output error
return 0
}
//code for 5,6,7 after and outside of the if loop
还有 (voterCount = 0; voterCount < numVoters; voter++)
, 在我看来是 (int voterCount = 0; voterCount < numVoters; voterCount++)
.
一般来说,我认为您误解了 while 和 for 循环。您应该仔细阅读它们以了解哪里出了问题。
关于c++ - 如何使用当前时间为随机数生成器播种、显示标题并将随机出生日期分配给 X 数量的人 (C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54996405/
抱歉我的英语不好......我尝试使用 Google Apps 脚本 - 通讯录服务读取通讯录中的信息。 姓名、电子邮件、地址、电话没有问题,但我无法读取日期(我想获取联系人的出生日期)。如何读取“日
我有一个包含字段生日(DATE) 的用户表。 目前,我像这样选择生日在当前日期之前或之后 7 天内的用户: SELECT * FROM users WHERE DATE_FORMAT(birt
我是一名优秀的程序员,十分优秀!