摘要: 与while区别:do-while不管条件满不满足,都会先执行一次循环语句,然后再判断循环条件。 阅读全文
posted @ 2024-09-15 19:06 不是孩子了 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2024.cnblogs.com/blog/2506674/202409/2506674-20240915183023193-524811345.png) 阅读全文
posted @ 2024-09-15 18:30 不是孩子了 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2024.cnblogs.com/blog/2506674/202409/2506674-20240915182326849-243878169.png) 阅读全文
posted @ 2024-09-15 18:23 不是孩子了 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 一种是char str1[] 另一种是string #include<iostream> #include<string> using namespace std; int main() { char str1[] = "hello"; string str2 = "world"; cout<<st 阅读全文
posted @ 2024-09-15 18:00 不是孩子了 阅读(4) 评论(0) 推荐(0) 编辑