D-P

博客园 首页 新随笔 联系 订阅 管理

2021年3月12日 #

摘要: 循环控制 #include <stdio.h> ​ int main() { int x; scanf("%d", &x); int i; int isPrime = 1; //x是素数 for ( i=2; i<x; i++ ) { if( x % i == 0 ) { isPrime = 0; 阅读全文
posted @ 2021-03-12 23:55 D-P 阅读(44) 评论(0) 推荐(0) 编辑

摘要: 级联和嵌套的判断 嵌套 if条件满足或者不满足的时候要执行的时候要执行的仍然是if或者if-else语句,则说这个if是一个嵌套; 注: else总和最近的if关联; 注意大括号{}的范围; 注意首列的对齐; if (******) if(***) ** else ***** //此处else与内层 阅读全文
posted @ 2021-03-12 23:54 D-P 阅读(87) 评论(0) 推荐(0) 编辑

摘要: 逻辑类型和运算 //可以使用bool、true、false #include <stdbool.h> //使用bool类型需要的头文件 ​ int main () { bool b = 6>5; bool t = true; t = 2; printf("%d\n",b); return 0l; } 阅读全文
posted @ 2021-03-12 23:53 D-P 阅读(83) 评论(0) 推荐(0) 编辑