02 2021 档案

摘要: 结构体的一些基本代码 阅读全文
posted @ 2021-02-07 17:42 stratus 阅读(94) 评论(0) 推荐(0)
摘要: 指针的一些基础代码 阅读全文
posted @ 2021-02-06 17:31 stratus 阅读(76) 评论(0) 推荐(0)
摘要: 数组与函数的一些基础代码~ 阅读全文
posted @ 2021-02-05 18:29 stratus 阅读(67) 评论(0) 推荐(0)
摘要:程序流程结构,部分代码 阅读全文
posted @ 2021-02-02 17:29 stratus 阅读(88) 评论(0) 推荐(0)
摘要:1 #include<iostream> 2 using namespace std; 3 int main(){ 4 //加减乘除 5 int a1 = 10; 6 int b1 = 3; 7 8 9 cout<< a1 + b1 <<endl; 10 cout<< a1 - b1 <<endl; 阅读全文
posted @ 2021-02-02 17:26 stratus 阅读(76) 评论(0) 推荐(0)