鱼C论坛's Archiver
论坛
›
C\C++交流
› 保留字符串中的数字(包括负数)
微光拼图
发表于 2021-11-19 22:48:17
保留字符串中的数字(包括负数)
例:
输入:“ -3435 regev vrvsvx ”
输出:“-3435”
人造人
发表于 2021-11-19 23:16:32
#include <stdio.h>
int main(void) {
char buff; scanf("%s", buff);
int num; sscanf(buff, "%d", &num);
printf("%d\n", num);
return 0;
}
tomok
发表于 2021-11-21 07:42:04
来学习代码
页:
[1]
查看完整版本:
保留字符串中的数字(包括负数)