在编程中输出"yes"或"no"类型,通常使用条件语句(如if-else)来实现。以下是一些常见的方法:
使用if-else语句
```c
include int main() { int num; printf("请输入一个数字: "); scanf("%d", &num); if (num > 0) { printf("yes\n"); } else { printf("no\n"); } return 0; } ``` ```c include int main() { int num; printf("请输入一个数字: "); scanf("%d", &num); printf("%s\n", num > 0 ? "yes" : "no"); return 0; } ``` ```c include include int main() { char response; printf("请输入yes或no: "); fgets(response, sizeof(response), stdin); response[strcspn(response, "\n")] = 0; // 去掉换行符 if (strcmp(response, "yes") == 0) { printf("yes\n"); } else if (strcmp(response, "no") == 0) { printf("no\n"); } else { printf("Invalid input\n"); } return 0; } ``` ```c include int main() { char ch; ch = getchar(); if (ch == 'y' || ch == 'Y') { printf("yes\n"); } else if (ch == 'n' || ch == 'N') { printf("no\n"); } else { printf("Invalid input\n"); } return 0; } ``` 这些方法可以根据具体需求和编程语言选择使用。使用三元运算符
使用字符串比较
使用getchar()函数