摘要:
如何把更改的驱动器图标改成默认图标?在驱动器的根目录下找到 desktop.ini (是一个隐藏文件),删除这个文件,驱动器的图标就变回默认的了。 阅读全文
摘要:
#include <stdio.h> #include <math.h> main() { float s=1,pi=0,i=1.0,n=1.0; while(fabs(i)>=1e-6) { pi+=i; n=n+2; s=-s; i=s/n; } pi=4*pi; printf("pi的值是:% 阅读全文
摘要:
#include<stdio.h> main() { int shu[10]={0},su,max[2]; while((su=getchar())!='\n') shu[su-48]++; for(su=1,max[1]=0;su<10;su++) if(shu[su]>=max[1]) max[ 阅读全文
摘要:
#include <stdio.h> main() { int n,a,b=0,c; scanf("%d",&n); printf("%d=1*",n); for(a=2;a<n;a++) {c=0; if(n%a==0) printf("%d",a),b++,c=1; if(b%2==1&& c= 阅读全文
摘要:
#include <stdio.h> main() { int n; while(~scanf("%d",&n)) { printf("%d\n",n); if(n==0) break; } getchar(); } 阅读全文
摘要:
#include<stdio.h> int main() { int m,i,count=0;//定义一个正整数m,因子i,因子计数count,刚开始因子为0; printf("请输入一个正整数:\n"); scanf("%d",&m); for(i=1;i<=m;i++)//用for循环来从1因子 阅读全文
摘要:
//求最小公倍数 //两个或多个整数公有的倍数叫做它们的公倍数,其中除0以外最小的一个公倍数就叫做这几个整数的最小公倍数。 #include <stdio.h> main() { int m,n,i,k,max,min; scanf("%d,%d",&m,&n); max=m>n?m:n; min= 阅读全文