#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define N 9
long ctod( char *s )
{ long d=0;
while(*s)
if(isdigit( s))
{
d=d10+*s-‘0’;
s++;
}
return d;
}
long fun( char *a, char *b )
{
return ctod(a)+ctod(b);
}
void main()
{ char s1[N],s2[N];
do
{ printf("Input string s1 : "); gets(s1); }
while( strlen(s1)>N );
do
{ printf(“Input string s2 : “); gets(s2); }
while( strlen(s2)>N );
printf(“The result is: %ld\n”, fun(s1,s2) );
}
2.不明白
3.
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
float fun (float h )
{
int h1;
if(h<0)
exit(0);
else
{
h1=h/0.001;
if(h1%10>=5)
return((h1/10)*0.01+0.01);
else
return((h1/10)*0.01);
}
}
void main()
{
FILE *wf;
float a;
system(“CLS”);
printf(“Enter a: “);
scanf (”%f”,&a);
printf(“The original data is : “);
printf(”%f\n\n”, a);
printf(“The result : %f\n”, fun(a));
wf=fopen(“out.dat”,“w”);
fprintf(wf,”%f”,fun(8.32533));
fclose(wf);
}
6.222222222222222
最新推荐文章于 2022-06-21 21:10:21 发布