竞赛练习
gajicat
这个作者很懒,什么都没留下…
展开
-
[竞赛练习]字符Z
/* *下面这段代码的作用时,输入一个数字d,输出d行d列的Z形图。 *例如输入9,输出 ######### # # # # # # # ######### * *将 ①处的代码补充完整 */ #include <iostream> using namespace std; int main(){ int i,j,d; cin >> d; for(i=0;i<d;i++) { for(j=0;j<d;j++)原创 2021-02-07 15:03:28 · 138 阅读 · 0 评论 -
[竞赛练习]交换x_y
/* *下面这段代码的作用时,将x,y两个数字交换位置。 例如一开始x=5 y=11,结束时输出 x=11 y=5 *加加想出了一种办法,不需要使用中转变量。 * *将 ①②处的代码补充完整 */ #include <iostream> using namespace std; int main(){ int x,y; x=5;y=11; cout << "x="<<x<<" y="<<y<<endl; x=x原创 2021-02-07 15:01:16 · 153 阅读 · 0 评论