40求调
查看原帖
40求调
1444932
ForgetRec楼主2025/8/5 11:27
#include <bits/stdc++.h>
using namespace std;
int main() {
    int n;
	cin >> n;
	int a[n + 1] = {0};
    for(int i = 1; i <= n; i++) 
	{
        cin >> a[i];
    }
    for(int i = 1; i <= n; i++)
	{
		if(a[i] <= 15) 
		{
           	cout << a[i] << " "; 
        } 
	 } 
    for(int i = 1; i <= n; i++) 
	{
        if(a[i] <= 15)
        {
        	cout << a[i] << " ";
		}
    }
    return 0;
}
2025/8/5 11:27
加载中...