このコードは、名前、方向、番号を毎回要求し、配列に保存します。続行するかどうかを尋ねられます。0 は別の連絡先を入力するためのもので、1 はリストを印刷するためのものです。\t を使用してタイトルの下に各項目を配置しようとしましたが、入力した文字列にスペースが含まれていない場合は完全に機能しますが、スペースを使用すると文字列が整列しません。何が問題ですか?私はそれを理解することはできません。前もって感謝します。
#include "stdafx.h"
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include <string.h>
void desplegar(int, char[][20], char[][20],char[][20]);
int main()
{
char nombres[20][20];
char direcciones[20][20];
char numeros[20][20];
int opcion = 0;
int contactos = 0;
system("hostname");
do {
printf("\nIngrese el nombre del contacto: ");
gets(nombres[contactos]);
printf("\nIngrese la direccion del contacto: ");
gets(direcciones[contactos]);
printf("\nIngrese el numero del contacto: ");
gets(numeros[contactos]);
contactos++;
printf("\nDesea ingresar otro contacto? (0/1): ");
scanf("%d",&opcion);
getchar();
}while(opcion != 1 && contactos < 20);
desplegar(contactos,nombres,direcciones,numeros);
printf("\n");
system("pause");
return 0;
}
void desplegar(int cantidad,char nombres[][20],char direcciones[][20],char numeros[][20]){
printf("Nombres\t\tDirecciones\t\tTelefono\n");
for (int i = 0; i < cantidad; i++){
printf("%s\t\t%s\t\t%s\n",nombres[i],direcciones[i],numeros[i]);
}
}