摘要:
与while区别:do-while不管条件满不满足,都会先执行一次循环语句,然后再判断循环条件。 阅读全文
摘要:
![](https://img2024.cnblogs.com/blog/2506674/202409/2506674-20240915183023193-524811345.png) 阅读全文
摘要:
![](https://img2024.cnblogs.com/blog/2506674/202409/2506674-20240915182326849-243878169.png) 阅读全文
摘要:
一种是char str1[] 另一种是string #include<iostream> #include<string> using namespace std; int main() { char str1[] = "hello"; string str2 = "world"; cout<<st 阅读全文