摘要:
#include<stdio.h>int main(){ int i=0;j=0;a[5],b[5],k=0,count=0,n=0; for(i=1;i<256;i++) { n=i*i; for(j=0,k=0;n!=0;j++,k++) { a[j]=n%10; n/=10; } for(j= 阅读全文
摘要:
#include<stdio.h>int main(){ long number=0; long num=0,k,b=0; printf("以下是100000以内自守数:\n"); for(number=0;number<=100000;number++) { for(k=10,num=number 阅读全文
摘要:
#include <stdio.h>int main(){ int a, i, b, n; printf("There are following friendly - numbers pair smaller than 3000:\n"); for (a = 1; a < 3000; a++) { 阅读全文
摘要:
#include<stdio.h>int main(){ int m,n; scanf("%d%d",&m,&n); int i,j; int sum=0; int flag=0; for(i=m;i<=n;i++) { sum=0; for(j=1;j<i;j++) if(i%j==0) sum+ 阅读全文
摘要:
#include<stdio.h>int main(){ int z,i,j; for(i=0;i<16;i++){ for(j=0;j<24;j++){ for(z=0;z<46;z++){ if(3*i+2*j+z==50&&i+j+z==30){ printf("%d %d %d\n",i,j 阅读全文