摘要:
#include<stdio.h> int main( int t,a[5]; /*数组a存放分解后的5个数字*/ long int k,i; /*以95860为初值,循环试探*/for(i=95860;;i++) /*从高到低分解当前i中保存的五位数,并顺次存放在数组元素a[01~a[4]中*/f 阅读全文
摘要:
#include<stdio.h> int main () int i,j,x, flag-0; /*flag作为控制标志*/ /*从23开始试探,步长为2*/ for(i=23; flag==0;i+=2) for(j=1, x=i;j<=4&&x>=11;j++) if((x+1)%(j+1)= 阅读全文
摘要:
#include<stdio.h> int main() { int m,n, number=0; printf("红球白球黑球\n"); printf("........... ..... . . . ... \n");for (m=0;m<=3;m++) /*变量m控制红球的个数*/ for ( 阅读全文
摘要:
#include<stdio.h> void print (int s[]); int judge(int c[]); int j-0; /*记录糖果分配次数*/ main () int sweet [10]={10,2,8,22,16,4,10,6,14,20};1*初始化数组数据*/int i, 阅读全文
摘要:
#include<stdio.h> #include<math.h> int main () { int x1,×2,x3,x5,x8, y1, y2, y3, y5, y8; /*定义变量*/ double max=0.0, result; /*result变量存放最后结果*/ /*使用for循环 阅读全文
摘要:
#include <stdio.h>#define TAXBASE3500/*定义结构体*/ typedef struct{ long start; long end; double taxrate; }TAXTABLE; /*定义结构体数组*/ TAXTABLE TaxTable[]={0,150 阅读全文
摘要:
#include <stdio.h> #define MAXCHAR 101 /*最大允许字符串长度*/ int char_to_num (char ch) ; /*返回字符对应的数字*/ char num_to_char (int num) ; /*返回数字对应的字符*/ long source_ 阅读全文
摘要:
#include<stdio.h> #define N 10 int main() { int i,a[N]={-3,4,7,9,13,45,67,89,100,180},low=0,high=N-1,mid,k=-1,m; printf("a数组种的数据如下:\n"); for(i=0;i<=N; 阅读全文
摘要:
#include<stdio.h> #define N 10 int main() { int s[N] ,i,j,a[N],t,count=0; printf("请为数组元素赋初值:\n"); for (i=0;i<N;i++) scanf("%d",&a[i]); for(i=0;i<N-1;i 阅读全文
摘要:
#include<stdio.h> int main() { int i; double money=0.0; for (i=0;i<5;i++) money=(money+1000.0)/(1+0.0063*12); printf ("应该存入的钱数为: %0.2f\n",money); } 阅读全文