码迷,mamicode.com
首页 > 其他好文 > 详细

关于c的比较

时间:2019-05-13 16:03:46      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:int   turn   return   cut   printf   exe   print   tin   include   

 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的比较

标签:int   turn   return   cut   printf   exe   print   tin   include   

原文地址:https://www.cnblogs.com/pxxfxxxx/p/10856902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!