私のコードは機能しますが、正しく印刷されません。これは私の入力です:
文字は 1、int は 2、float は 3、単語は 4 で入力してください
1 abcdefghijklmnop 3 123.4 45.54 6.0 7890.09876 2 123 34 23 12345 4 aaaaa bbbbb ccccc ssssssssssssssssss
本来のように cccccc の後に停止させる方法がわかりません。ランダムなものを入力して、スペースを埋める前に入力する必要があります。mallocを使用していないことに関係があると確信しています。
次に、これが出力です。
タイプ 1: abcdefghijklmnop タイプ 3: 123.400002/ 45.540001/ 6.000000/ 7890.098633 タイプ 2: 123、34、23、12345 タイプ 4: ccccc ccccc ccccc タイプ 1: sssssssssssssss
タイプ 4 では、aaaaa bbbbb ccccc になるはずですが、そうではありません。また、タイプ 1 では表示されませんが、この奇妙な四角いグリッチのように印刷されます。
これが私のコードです。3つのファイルに入っています
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lab5.h"
#include "lab5dispatch.c"
#define MAX_ENTRIES 16
int main()
{
MESSAGE cache[MAX_ENTRIES];
int i = 0;
printf("Please enter in 1 for characters, 2 for ints, 3 for floats and 4 for words\n");
while (scanf("%d", &cache[i].messageType) != EOF && i < MAX_ENTRIES)
{
switch(cache[i].messageType)
{
case 1:
scanf("%16s", &cache[i].MESSAGE_CONTENT.charPointer);
break;
case 2:
scanf("%d", &cache[i].MESSAGE_CONTENT.theInts[0]);
scanf("%d", &cache[i].MESSAGE_CONTENT.theInts[1]);
scanf("%d", &cache[i].MESSAGE_CONTENT.theInts[2]);
scanf("%d", &cache[i].MESSAGE_CONTENT.theInts[3]);
break;
case 3:
scanf("%f", &cache[i].MESSAGE_CONTENT.theFloats[0]);
scanf("%f", &cache[i].MESSAGE_CONTENT.theFloats[1]);
scanf("%f", &cache[i].MESSAGE_CONTENT.theFloats[2]);
scanf("%f", &cache[i].MESSAGE_CONTENT.theFloats[3]);
break;
case 4:
scanf("%s", &cache[i].MESSAGE_CONTENT.word1);
scanf("%s", &cache[i].MESSAGE_CONTENT.word2);
scanf("%s", &cache[i].MESSAGE_CONTENT.word3);
break;
}
i++;
}
message_dispatcher(cache, i);
}
2つ目のファイルです。
#ifndef LAB5_H_ /* to prevent re-definitions */
#define LAB5_H_ /* that cause errors */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//the unsigned short is to store what type of data the main struct will store
typedef struct MESSAGE
{
unsigned short int messageType;
union
{
char * charPointer; //this is for the string
int theInts[4];
float theFloats[4];
char word1[5]; //can probably use a 2d array here but that's too complicated right now haha
char word2[5];
char word3[5];
} MESSAGE_CONTENT;
} MESSAGE;
そしてこれが最後のファイルです。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lab5.h"
void message_dispatcher( MESSAGE msg[], int j ) {
int i;
for (i = 0; i < j; i++)
{
switch(msg[i].messageType)
{
case 1:
printf("Type 1: %s\n", &msg[i].MESSAGE_CONTENT.charPointer);
break;
case 2:
printf("Type 2: %d, %d, %d, %d\n", msg[i].MESSAGE_CONTENT.theInts[0],
msg[i].MESSAGE_CONTENT.theInts[1], msg[i].MESSAGE_CONTENT.theInts[2],
msg[i].MESSAGE_CONTENT.theInts[3]);
break;
case 3:
printf("Type 3: %f/ %f/ %f/ %f \n", msg[i].MESSAGE_CONTENT.theFloats[0], msg[i].MESSAGE_CONTENT.theFloats[1], msg[i].MESSAGE_CONTENT.theFloats[2], msg[i].MESSAGE_CONTENT.theFloats[3]);
break;
case 4:
printf("Type 4: %s %s %s\n", msg[i].MESSAGE_CONTENT.word1, msg[i].MESSAGE_CONTENT.word2, msg[i].MESSAGE_CONTENT.word3);
break;
}
}
}