摘要: 一.if语句 1.基本语法: if(条件 布尔型){ 当条件符合执行的语句 } 2.例子: #include <iostream> using namespace std; int main(){ int a; a = 20; if(a > 10){ // ">" 是大于 cout << "a大于1 阅读全文
posted @ 2020-11-23 14:48 KevinLikesCoding 阅读(3607) 评论(0) 推荐(1) 编辑