第1个回答 2015-11-26
/*
============================================================================
Name : C_test.c
Author :
Version :
Copyright : Your copyright notice
Description : Hello World in C, Ansi-style
============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(void) {
int m;
int i;
int a[1000];
int a_=0;//a数组的下标
scanf("%d",&m);
for(i=1;i<=m;i++){
if((i%7==0)||(i%11==0)){
a[a_]=i;
a_++;
printf("%d\n",i);
}
}
puts("end");
return EXIT_SUCCESS;
}本回答被网友采纳