c++
文章平均质量分 55
multi4
这个作者很懒,什么都没留下…
展开
-
c++ 小案例
水仙花数 **案例描述:**水仙花数是指一个 3 位数,它的每个位上的数字的 3次幂之和等于它本身 例如:1^3 + 5^3+ 3^3 = 153 请利用do…while语句,求出所有3位数中的水仙花数 #include<iostream> using namespace std; int main() { // 1、先打印所有三位数字 int num = 100; do { //2、从所有尚未数字中找到水鲜花数 int a = 0; //个位 int b =原创 2021-02-04 22:48:33 · 166 阅读 · 0 评论 -
C++
1 C++初识 1.1.3 编写代码 #include<iostream> using namespace std; int main() { cout << "Hello world" << endl; system("pause"); return 0; } 1.1.4 运行程序 1.2 注释 作用:在代码中加一些说明和解释,方便自己或其他程序员程序员阅读代码 两种格式 单行注释:// 描述信息 通常放在一行代码的上方,或者一条语句的末尾,对该行代原创 2021-02-04 22:48:07 · 416 阅读 · 0 评论