题解 1491: 蓝桥杯算法提高VIP-交换Easy

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

小白也能看懂

摘要:解题思路:循环输入数组里的数据,里面设置一个空的变量t,用t来负责交换值,最后将数组按顺序输出即可注意事项:无参考代码:#include<stdio.h>int main(){    int N,M,……

一种超简单的方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int m,n,w=1;    int t;    int i,j;    int x,y;    sca……

一种超简单的方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int m,n;    int t;    int i,j;    int x,y;    scanf("……

蓝桥杯算法提高VIP-交换Easy

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){    int n, m, x, y, i, t;    int N[1000];    scanf("……