转化成字符串,再用for循环输出:
#include <stdio.h>
#include <string.h>
int main()
{
char s[32];
int d, i;
gets(s);
d = strlen(s);
for( i = 0; i < d; i ++ )
putchar(s[i]);
return 0;
}
疑问:如何进行大数的计算?
2022-12-20 18:38:32
转化成字符串,再用for循环输出:
#include <stdio.h>
#include <string.h>
int main()
{
char s[32];
int d, i;
gets(s);
d = strlen(s);
for( i = 0; i < d; i ++ )
putchar(s[i]);
return 0;
}
疑问:如何进行大数的计算?