摘要:
include<stdio.h> //void swap(int x,int y) //{ //int tmp=0; //tmp=x; //x=y; //y=tmp; //} void swap2(int *pa,int pb) { int tmp=0; tmp=pa; pa=pb; *pb=tmp 阅读全文
摘要:
include<stdio.h> include<string.h> include<math.h> int main() //输出1-100以内的素数(试除法) //{ //int a; //int count=0; //for(a=100;a<=200;a++) //{ // int j; // 阅读全文