2023年5月20日
摘要: 《I Love You 1000 Times》是 The Platters 于 2019 年演唱的歌曲。在 520 这个日子里,拼题 A 请你实现一个小功能,把 1000 这个数字换成用户输入的任意一个数字,然后仿照歌名的句式输出表白。当然,这里用中文 520 替换英文 I Love You。 输入 阅读全文
posted @ 2023-05-20 22:43 石铁生 阅读(14) 评论(0) 推荐(0)
摘要: 例5-1 题目:作用域实例 clude <iostream> using namespace std; int i; int main#in() { i=5; { int i; i=7; cout<<"i="<<i<<endl; } cout<<"i="<<i<<endl; return 0; } 阅读全文
posted @ 2023-05-20 21:32 石铁生 阅读(13) 评论(0) 推荐(0)