- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,我的程序试图从用户那里获取一些信息,并将其添加到结构体数组中。如果可以的话,我将不胜感激。程序不断循环显示“请输入有效的ID号:”,但我不知道为什么。同样,当以后使用打印功能时,用户的信息也不会被添加到阵列中。
void add_employee(Employee *db, int db_size){
int tst1, tst2, tst3, tst4 = 0;
char temp_first[MAXNAME];
char temp_last[MAXNAME];
int temp_six_digit_id;
int temp_salary;
db_size++;
printf("Please enter a first name:\n");
if(scanf("%s", temp_first) == 1){tst1 == 1;}
else{
printf("Please enter a valid name.\n");
while(tst1 == 0){
if(scanf("%s", temp_first) == 1){tst1 == 1;}
else{printf("Please enter a valid name.\n");}
}
}
printf("Please enter a last name:\n");
if(scanf("%s", temp_last) == 1){tst2 == 1;}
else{
printf("Please enter a valid name.\n");
while(tst2 == 0){
if(scanf("%s", temp_last) == 1){tst2 == 1;}
else{printf("Please enter a valid name.\n");}
}
}
printf("Please enter the six digit ID number:\n");
if(scanf("%d", &temp_six_digit_id) == 1){tst3 ==1;}
else{
printf("Please enter a valid ID number:\n");
while(tst3 == 0){
if(scanf("%d", &temp_six_digit_id) == 1){tst3 == 1;}
else{printf("Please enter a valid ID number:\n");}
}
}
printf("Please enter the salary:\n");
if(scanf("%d", &temp_salary) ==1){tst4 == 1;}
else{
printf("Please enter a valid Salary:\n");
while(tst3 == 0){
if(scanf("%d", &temp_salary) == 1){tst3 == 1;}
else{printf("Please enter a valid Salary:\n");}
}
}
strcpy(db[db_size].first_name, temp_first);
strcpy(db[db_size].last_name, temp_last);
db[db_size].six_digit_id = temp_six_digit_id;
db[db_size].salary = temp_salary;
最佳答案
继续进行注释,使用scanf
读取用户输入时涉及许多注意事项。这就是为什么,作为一个普遍的主张,优先选择面向行(例如fgets
或getline
),它将消除由于'\n'
留在输入缓冲区(此处为stdin
)而引起的问题。 fgets
和getline
最多读取并包括换行符(当用户按键盘上的Enter键时生成。使用任意一种读取后,只需将读取的字符串传递给sscanf
即可从读取的字符串中解析所需的信息。
也就是说,您可以使用scanf
处理输入,但是您有责任处理'\n'
。
在查看scanf
之前,让我们谈一谈当前以void
类型输入的功能。这完全是对回报的浪费,可以用来指示输入的成功或失败。您将如何处理用户取消输入的操作(例如,使用Ctrl + d(在Linux上)或Ctrl + z(关闭))在函数中进行输入时,请始终提供可用于指示成功/失败的返回值。在这里,您可以简单地返回指向新节点的指针以指示成功,或者返回NULL
指示失败。这样,您的函数将是Employee *
类型而不是void
。
就是说,具有scanf
格式说明符的%s
读取的内容最多,但不包括第一个空格或'\n'
。因此,当用户输入name
并按Enter时,会在变量中捕获"name"
,但'\n'
仍保留在stdin
中。如果下一个输入是数字类型,或键入char
,则scanf
会很乐意使用'\n'
作为用户的值(鉴于scanf
跳过了提示)。为了防止scanf
将'\n'
用作下一个值,而不管类型如何,可以在格式说明符之前加上space
(例如" %s"
),这将导致scanf
忽略第一个值之前的所有空格。非空白字符('\n'
被视为空白)。
您还可以将分配抑制运算符用于scanf
。 (例如"%s%*c"
),其中'*'
之前的c
告诉scanf
读取并丢弃下一个字符(不影响scanf
返回的匹配计数)。您可以在man scanf
中阅读。 (在读取最多可包含嵌入式空格的字符时也更有意义,例如," %99[^\n]%*c"
表示最大的100 char
字符串-包括nul-byte
)
要使用scanf
读取不包含空格的字符串,可以确保收到输入,同时还允许用户使用手动EOF
取消输入而没有所有tst1, tst2, ...
变量。以temp_first
值为例。您可以执行以下操作:
int return_val; /* capture the return of scanf */
...
printf ("\nPlease enter a first name: ");
while ((return_val = scanf (" %s", temp_first)) != 1) {
if (return_val == EOF) /* trap manual EOF */
return NULL; /* return NULL for error */
fprintf (stderr, "error: invalid first name.\n");
printf ("Please enter a first name: ");
}
tst
值的操作。
temp_six_digit_id
时,将输入作为字符串更有意义。这样就可以简单地调用
6
来确定您确实具有
strlen
位。在这里,您可以执行以下操作:
printf ("Please enter the six digit ID number: ");
while ((return_val = scanf (" %s", temp_id)) != 1 ||
strlen (temp_id) != 6) {
if (return_val == EOF)
return NULL;
fprintf (stderr, "error: invalid ID.\n");
printf ("Please enter the six digit ID number: ");
}
temp_six_digit_id = (int)strtol (temp_id, NULL, 10);
/* strtol validations omitted (see man strtod example) */
salary
阅读为字符串,并保留
strtol
提供的错误检查/处理)。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* constants, max(employees, ID, salary, name) */
enum { MAXE = 3, MAXID = 32, MAXSAL = 64, MAXNAME = 256 };
typedef struct {
char first_name[MAXNAME],
last_name[MAXNAME];
int six_digit_id,
salary;
} Employee;
int main (void) {
Employee db[MAXE] = {{ .first_name = "" }};
char temp_first[MAXNAME] = "",
temp_last[MAXNAME] = "",
temp_id[MAXID] = "",
temp_sal[MAXSAL] = "";
int temp_six_digit_id = 0,
temp_salary = 0,
return_val = 0,
db_size = 0;
while (db_size < MAXE) {
printf ("\nPlease enter a first name: ");
while ((return_val = scanf (" %s", temp_first)) != 1) {
if (return_val == EOF) /* trap manual EOF */
return 1; /* return NULL for error */
fprintf (stderr, "error: invalid first name.\n");
printf ("Please enter a first name: ");
}
printf ("Please enter a last name: ");
while ((return_val = scanf (" %s", temp_last)) != 1) {
if (return_val == EOF)
return 1;
fprintf (stderr, "error: invalid last name.\n");
printf ("Please enter a last name: ");
}
printf ("Please enter the six digit ID number: ");
while ((return_val = scanf (" %s", temp_id)) != 1 ||
strlen (temp_id) != 6) {
if (return_val == EOF)
return 1;
fprintf (stderr, "error: invalid ID.\n");
printf ("Please enter the six digit ID number: ");
}
temp_six_digit_id = (int)strtol (temp_id, NULL, 10);
/* strtol validations omitted (see man strtod example) */
printf ("Please enter the salary: ");
while ((return_val = scanf (" %s", temp_sal)) != 1) {
if (return_val == EOF)
return 1;
fprintf (stderr, "error: invalid salary.\n");
printf ("Please enter a the salary: ");
}
temp_salary = (int)strtol (temp_sal, NULL, 10);
strcpy(db[db_size].first_name, temp_first);
strcpy(db[db_size].last_name, temp_last);
db[db_size].six_digit_id = temp_six_digit_id;
db[db_size].salary = temp_salary;
db_size++; /* 'db_size' is a copy here, changes are not visible in the
caller, pass a pointer to db_size to make change visible */
}
for (int i = 0; i < db_size; i++)
printf ("\n name : %s %s\n ID : %d\n salary : %d\n",
db[i].first_name, db[i].last_name, db[i].six_digit_id,
db[i].salary);
return 0;
}
db_size
的注释。如果希望在调用函数中看到对
db_size
的更改,则需要将指针传递给
db_size
而不是
db_size
本身。)
$ ./bin/emp_input
Please enter a first name: Mary
Please enter a last name: Jane
Please enter the six digit ID number: 123
error: invalid ID.
Please enter the six digit ID number: 123456
Please enter the salary: 937
Please enter a first name: John
Please enter a last name: Doe
Please enter the six digit ID number: 234567
Please enter the salary: 1024
Please enter a first name: Bill
Please enter a last name: Jones
Please enter the six digit ID number: 234568
Please enter the salary: 1020
name : Mary Jane
ID : 123456
salary : 937
name : John Doe
ID : 234567
salary : 1024
name : Bill Jones
ID : 234568
salary : 1020
关于c - 程序在ID号调用时循环,并且没有在数组中输入信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39542740/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!