关于c的比较
Posted pxxfxxxx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于c的比较相关的知识,希望对你有一定的参考价值。
1 #include <stdio.h> 2 3 int main() { 4 int a = 2, b = 3, c = b % a;// b % a == 1 5 if (a <= b <= c) { 6 printf("Yes!\n"); 7 8 } else { 9 printf("No!\n"); 10 } 11 return 0; 12 } 13 14 Yes! 15 16 Process returned 0 (0x0) execution time : 0.816 s 17 Press any key to continue. 18 19 #include <stdio.h> 20 21 int main() { 22 int a = 2, b = 3, c = b % a;// b % a == 1 23 if (a <= b && b<= c) { 24 printf("Yes!\n"); 25 26 } else { 27 printf("No!\n"); 28 } 29 return 0; 30 } 31 32 No! 33 34 Process returned 0 (0x0) execution time : 1.108 s 35 Press any key to continue. 36 37 // C语言里每次比较只能做一个
以上是关于关于c的比较的主要内容,如果未能解决你的问题,请参考以下文章