摘要: 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 阅读全文
posted @ 2024-01-11 11:36 累die 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 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; // 阅读全文
posted @ 2024-01-11 10:24 累die 阅读(9) 评论(0) 推荐(0) 编辑