首页 > 解决方案 > C程序不在结构中打印字符串

问题描述

我制作了一个程序来将多个输入作为字符串,存储和打印它们。不知何故,存储在其中的“帐号”a[i].acn没有打印。我试过调试,问题似乎出在将空格添加到a[i].name.

#include <stdio.h>
#include <string.h>
struct Bank
{
    char name[10],acn[8];
    float bal;
}a[100];
int n,i,flag;
void add()
{
//function to add Rs. 100 to accounts that have balance over 1000
//and print the details.
    for(i=0;i<n;i++)
        if(a[i].bal>=1000)
            a[i].bal+=100;
    printf("\nS.No.\tName\t\tAcc. No.\tBalance(in Rs.)");
    for(i=0;i<n;i++)
        printf("\n[%d]\t%s\t%s\t%.2f",i+1,a[i].name,a[i].acn,a[i].bal);
}
void main()
{
    printf("Enter the number of customers: ");
    scanf("%d",&n);
    printf("Enter the details of %d customers:\n",n);
    for(i=0;i<n;i++)
    {
        printf("\nCustomer-%d",i+1);
        printf("\nFirst Name: ");
        fflush(stdin);
        gets(a[i].name);
        printf("Account Number: ");
        fflush(stdin);
        gets(a[i].acn);
        printf("Account Balance: ");
        scanf("%f",&a[i].bal);
    }
    for(i=0;i<n;i++)//The problem seems to be in this loop
        while(strlen(a[i].name)<10)
            strcat(a[i].name," ");
    add();
}

输入:

Enter the number of customers: 2
Enter the details of 2 customers:

Customer-1
First Name: Aarav
Account Number: ASDF1234
Account Balance: 1200

Customer-2
First Name: Asd
Account Number: abcd1122
Account Balance: 999.9

输出:

S.No.   Name            Acc. No.        Balance(in Rs.)
[1]     Aarav                   1300.00
[2]     Asd                     999.90

标签: cstringfor-loopstructure

解决方案


您的程序中几乎没有需要纠正的地方。

  1. 使用fgets而不是gets因为gets没有边界检查并且存在读取超出分配大小的危险。

  2. 使用的时候fgetsscanf甚至gets都是\n从标准缓冲区中读取剩下的字符,所以使用fgets得当可以避免使用。(scanf 也避免使用空格字符但不能用于读取多字串)

  3. 删除fflush(stdin),它不是必需的,您可以在此处查看原因

  4. 最后,但肯定不是最不重要的使用,int main()而不是void main()


推荐阅读