所以我正在为一项任务制作一个程序,目前我正在尝试获取用户输入并尝试使其适合某种形式。
例如,用户要输入格式为 mm/yyyy 的日期。如果用户没有以该格式键入它,它只会重新提示用户。
到目前为止,这是我的小循环:
#include <iostream>
#include <cstring>
#include <string>
using namespace std;
int findSlash(char[], int);
int findLastEle(char[]);
int main() {
//variables
char expDate[7];
int expLast, expEle;
int expLen;
do{
cout << "Enter experation (form mm/yyyy): ";
cin.getline(expDate, 7);
expLen = strlen(expDate);
expEle = findSlash(expDate, expLen);
expLast = findLastEle(expDate);
}while(expEle != (expLast - 4));
return 0;
}
//findSlash function (finds slash place in array)
int findSlash(char array[], int arrayLen){
int r, dec = 0;
for(r = 0; r < arrayLen; r++){
if(array[r] == '/'){
break;
}
else{
dec++;
}
}
return dec;
}
如果'/'不在正确的位置,则循环假设此时只是重新提示,但循环只是向 cout 语句发送垃圾邮件,我不知道它为什么这样做。任何帮助将不胜感激:D