- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码
if(passwordCorretta(ds_sock)){
printf("CLIENT: password aggiungi corretta\n");
do{
printf("Cognome >> ");
fgets(cognome,sizeof(cognome),stdin);
//scanf("%s", cognome);
printf("Nome >> ");
fgets(nome,sizeof(nome),stdin);
//scanf("%s", nome);
printf("Telefono >> ");
fgets(telefono,sizeof(telefono),stdin);
//scanf("%s", telefono);
在输出中首先打印两个 printf,跳过第一个 fgets(),这是为什么?
这是我的输出
CLIENT: password aggiungi corretta
Cognome >> Nome >> **my input
Telefono >> **my input
有什么想法吗?谢谢
这是我的整个函数
void main(){
int ds_sock, length, res;
struct sockaddr_in client;
struct hostent *hp;
char oper[2];
int risPwd;
int op;
char cognome[30];
char nome[20];
char telefono[12];
char continua[3];
char ris[2];
int trovato;
int aggiunto;
ds_sock = socket(AF_INET, SOCK_STREAM, 0);
client.sin_family = AF_INET;
client.sin_port = 1999;
hp = gethostbyname("localhost"); //indirizzo del server
memcpy(&client.sin_addr, hp->h_addr, 4);
res = connect(ds_sock, &client, sizeof(client));
if(res==-1) {
perror("Errore nella connessione");
}
signal(SIGPIPE, gest_broken_pipe);
signal(SIGINT, gest_interruzione);
do{
op=scelta();
sprintf(oper,"%d",op);
if(write(ds_sock, oper, sizeof(oper))<0){
if(errno!=EINTR) perror("Errore di scrittura");
}
switch(op){
case 1:
printf("INSERIMENTO NUOVO CONTATTO\n");
if(passwordCorretta(ds_sock)){
printf("CLIENT: password aggiungi corretta\n");
do{
printf("Cognome >> ");
fgets(cognome,sizeof(cognome),stdin);
//scanf("%s", cognome);
printf("Nome >> ");
fgets(nome,sizeof(nome),stdin);
//scanf("%s", nome);
printf("Telefono >> ");
fgets(telefono,sizeof(telefono),stdin);
//scanf("%s", telefono);
if(write(ds_sock, cognome, sizeof(cognome))<0){
if(errno!=EINTR) perror("Errore di scrittura");
}
if(write(ds_sock, nome, sizeof(nome))<0){
if(errno!=EINTR) perror("Errore di scrittura");
}
if(write(ds_sock, telefono, sizeof(telefono))<0){
if(errno!=EINTR) perror("Errore di scrittura");
}
if(read(ds_sock, ris, sizeof(ris))<0){
if(errno!=EINTR) perror("Errore di lettura");
}
trovato=atoi(ris);
switch(trovato){
case 0:
printf("Errore di lettura nel Server\n");
break;
case 1:
printf("Il contatto è già presente nell'elenco\n");
break;
case 2:
if(read(ds_sock, ris, sizeof(ris))<0){
if(errno!=EINTR) perror("Errore di lettura");
}
aggiunto=atoi(ris);
if(aggiunto==0) printf("Errore di scrittura nel Server\n");
else printf("Il contatto è stato correttamente inserito nell'elenco\n");
break;
}
printf("Vuoi aggiungere un altro contatto? [SI/NO]\n");
scanf("%s", continua);
if(write(ds_sock, continua, sizeof(continua))<0){
if(errno!=EINTR) perror("Errore di scrittura");
}
}while(strcmp(continua, "SI")==0);
}
break;
case 2:
printf("RICERCA DI UN NUMERO TELEFONICO\n");
if(passwordCorretta(ds_sock)){
printf("CLIENT: password cerca corretta\n");
do{
printf("Cognome >> ");
scanf("%s", cognome);
printf("Nome >> ");
scanf("%s", nome);
if(write(ds_sock, cognome, sizeof(cognome))<0){
if(errno!=EINTR) perror("Errore di scrittura");
}
if(write(ds_sock, nome, sizeof(nome))<0){
if(errno!=EINTR) perror("Errore di scrittura");
}
if(read(ds_sock, ris, sizeof(ris))<0){
if(errno!=EINTR) perror("Errore di lettura");
}
trovato=atoi(ris);
switch(trovato){
case 0:
printf("Errore di lettura nel Server\n");
break;
case 1:
if(read(ds_sock, telefono, sizeof(telefono))<0){
if(errno!=EINTR) perror("Errore di lettura");
}
if(strcmp(telefono, "errore")==0) printf("Errore di lettura nel Server\n");
else printf("Il telefono del contatto richiesto è: %s\n", telefono);
break;
case 2:
printf("Il contatto non è presente nell'elenco\n");
break;
}
printf("Vuoi cercare un altro numero di telefono? [SI/NO]\n");
scanf("%s", continua);
if(write(ds_sock, continua, sizeof(continua))<0){
if(errno!=EINTR) perror("Errore di scrittura");
}
}while(strcmp(continua, "SI")==0);
}
break;
case 3:
printf("USCITA\n");
break;
case 0:
printf("Eseguito lo SHUTDOWN del Server\n");
break;
}
}while(op!=3 && op!=0);
close(ds_sock);
}
我使用 3 个名为 cognome、nome、telefono 的缓冲区。想法?
最佳答案
问题出在您的 scelta()
函数中。它的两个版本(使用 scanf()
或 fgets()
)都是错误的。
首先我会解释一下为什么你的fgets()
版本是错误的。
您将 comando
声明为 int
,而 fgets()
需要一个 char *
。这是未定义的行为,你很幸运(或不幸)它没有崩溃。
至于你的 scanf()
版本:这正是我在评论中预测的。 scanf()
仅读取整数输入,并将新行(ENTER 键)保留在输入缓冲区中。这意味着您在 main()
中的第一个 fgets()
调用正在读取这个剩余的 ENTER 键。
正确执行此操作的一种方法如下:
long int scelta() {
char input[20];
fgets(input, sizeof input, stdin); // this reads input
while(strchr(input, '\n') == NULL) {
// the input has not ended
// it is probably not a long int anyway but you still need to consume it
// choose your appropriate action, e.g.
while(getchar() != '\n'); // read everything in input buffer up to (and including) the ENTER key
puts("error");
fgets(input, sizeof input, stdin); // read input again
}
char *endptr;
long int comando = strtol(input, &endptr, 10);
// then check range and check for errors with endptr
return comando;
}
关于strtol()
的详细描述和示例代码(带错误检查),请参阅Linux Programmer's Manual .
关于c - 为什么 fgets() 工作错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29971235/
我有以下代码:(cpp14) static int const max_len = 1000; FILE* m_in_log = NULL; FILE* m_log = NULL; ... ... b
标准库函数 fgets() 有两个缺点: 函数的第二个参数是int类型 它在提供的缓冲区中留下一个尾随的换行符 我做了一个类似于 fgets() 的简单函数,排除了上述缺点,试图提高我的一个程序的效率
我看过各种关于在 fgets 之前使用 scanf 可能会导致问题的帖子。但是,对我来说,为什么在 AFTER 之后添加它会导致第一个语句中断,这是没有意义的。 这就是我所拥有的: unsigne
这可能是一个非常愚蠢的问题(可能),但我正在使用 fgets 处理文本文件。没什么太花哨的: while (fgets(buf, sizeof(buf), inputFile) != NULL) 正如
如果我想使用 fgets 从文本中读取多行,根据我的教科书,我会这样做: char str[53]; ... while(fgets(str, max, f)!=NULL){ ... }
我试图在完成未定义数量的另一个输入后获取用户输入。但问题是 while 循环之后的第二个 fgets 永远不会被调用。我用 EOF 结束循环,也许这就是错误。但我不知道应该如何结束循环。 另一个有趣的
我正在尝试将文件中的邮政编码读入 Object * 数组。文件包括123 无处不在柯克兰加州99223 我的 .h 文件看起来像 typedef struct { char *street;
我已经实现了我自己的 fgets(即 myfgets)。当我的文件中有必须由 myfgets 函数读取的 NULL 字符串时,它会打印所有字符串(好)但有一些垃圾(坏),但如果我使用预定义 fgets
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Why does printf not flush after the call unless a newl
假设 FILE* 有效,请考虑: char buf[128]; if(fgets(buf,sizeof buf,myFile) != NULL) { strlen(buf) == 0; //ca
void verification() { char pass[50]; printf(" Enter Password : "); fgets(pass, 50, stdin
我想知道如何从汇编代码中调用fgets。我读到的这些问题与这个问题完全相同:How to call fgets in x86 assembly?这个:How to use c library func
我有一个程序,用户可以在其中输入两个输入。由于我无法控制用户输入的内容,因此用户可以超过数组的固定大小。由于 fgets() appends 在空字符之前保留了一个换行符,如果用户超出预期大小时换行符
我想使用 fgets() 简单地读取一行并去掉换行符。这是否适用于所有情况,包括 Windows 和 UN*X? fgets(buf, sizeof buf, stdin); strtok(buf,
我正在运行以下代码: #include #include #include int main(){ FILE *fp; if((fp=fopen("test.txt","r"))==N
如果我有以下缓冲区: char buffy[40]; // includes \0 at the end fgets 函数应该有 STLEN 40 还是 39?为什么? char buffy[40];
使用fgets输入字符串,我对读取的字符串长度有疑问。 例如,考虑以下程序。 char str[50]; int i; int len; printf("Enter name:\n"); fgets(
fgets()函数是否将文件指针自动移动到该位置,直到我提到的大小参数为止? 例如 : p.txt文件的内容是“我是个好男孩”。使用fgets(a,5,fp1)之后 文件指针会向前移动5个位置吗? 在
gcc 4.4.4 c89 我正在读取一个文件,在该文件中,我必须对每一行进行一些操作。 在一个循环中,我调用了 2 个函数,它们传入此文件指针以对文件执行 2 种不同的操作。 但是,当我使用 fge
我试图从文件中获取我的 9x9 数字网格并将其存储在 2D int 数组中。为此,我编写了代码,以便它使用文件中的 fgets(),然后将 char 数组值转换为 int,然后将其存储在数组中的相应位
我是一名优秀的程序员,十分优秀!