我试图理解为什么当再见()部分被触发时而不是hello区域被触发时,为什么输出的是映射的字母。
#include <cs50.h>
#include <stdio.h>
int main(void){
int x = get_int("integer: ");
if (x <= 10){
printf("hello, %x\n",x);
}
else if (x > 10){
printf("goodbye, %x\n",x);
}
}