摘要:
/* Note:Your choice is C IDE */#include "stdio.h"void main(){ //素数//已知有数组int a[10]={1,2,3,7,9,11,13,24,21,10},//输出10位数组元素,并且进行数组元素中属于素数进行判断,//如属于素数则进行 阅读全文
摘要:
/* Note:Your choice is C IDE */#include "stdio.h"void main(){//冒泡排序 从小到大 int a[5]={15,3,8,10,2}; int h,l,t;//行 列 中间变量 for(h=1;h<5;h++)//行 { for(l=0;l< 阅读全文