FOJ 2206 函数求解

时间:2023-03-08 23:05:52
FOJ 2206 函数求解

水题

/* ***********************************************
Author :Zhou Zhentao
Email :774388357@qq.com
Created Time :2015/11/20 17:06:34
File Name :acm.cpp
************************************************ */ #include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std; int F(int x){
if(x<) return x+;
return ;
} int main(){
int n, T;
scanf("%d",&T);
while(T--){
scanf("%d",&n);
printf("%d\n",F(n));
}
return ;
}