Adjacent Replacements

警告
本文最后更新于 2023-07-07,文中内容可能已过时。

A. Adjacent Replacements

第一次打 cf 就做出一道这样的找规律的题,打到自闭。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#include<bits/stdc++.h>
using namespace std;

int main(){
    int n,a[1001];
    cin>>n;
    int i;
    int flag=0;
    for(i=0;i<n;i++){
        cin>>a[i];
        if(!(a[i]&1)) a[i]--;
        if(!flag) {cout<<a[i];flag=1;}
        else cout<<" "<<a[i];
    }
	return 0;
}
Buy me a coffee~
支付宝
微信
0%