算法入门经典002



#include <stdio.h>
#include <math.h>


int main(int argc, const char * argv[]) {

int n;

scanf("%d",&n);

for (int i = 1; i <=n; i ++) {
printf("%d\n",i);
}

return 0;
}









Loading Disqus comments...
Table of Contents