如何将用户给出的短语转换为数字而不是 ASCII 表?例如,我有短语 HELLO WORLD 并且我有一个数组,其中 <> 为 0,A 为 1,B 为 2,等等。请帮助!我的问题是我找不到比较两个数组的方法。我已经开始了我的代码
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char text[]={' ','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','.',',',':','?'};
char number[125];
main(){
int i,j;
printf("Enter a message to encode:");
gets(number);
}
但我有问题继续它