axaaaa

陈骏睿  •  12天前


#include<iostream>  // cin\cout\endl 
#include<cstdio>    //scanf()\printf() 
#include<cstring>   // strcpy()\strcat()\strcmp()\strlen()\memset()  

#include<cmath>  //sqrt()\pow()\abs()\ceil()\floor()\max()\min()  
using namespace std; 
int axs(int x){ 
   while(x<100){ 
       x++; 
       return x; 
   } 


int main(){ 
   int a; 
   for(a=1;a<=100;a++){ 
         axs(a); 
   cout<<a<<endl; 
   } 
   return 0; 
}


评论: