代码搜索:数字处理

找到约 10,000 项符合「数字处理」的源代码

代码结果 10,000
www.eeworm.com/read/407541/11416987

cpp 100~1000之间各个位数数字之和=n的整数.cpp

#include /**/ void main() { while(1) { printf("\n\t求100~1000之间各个位数数字之和﹦n (n27时结束)的整数\n\n"); int n; printf(" 输入n的值: "); scanf("%d",&n); if(n27) {break;} //
www.eeworm.com/read/407541/11417069

cpp 字符串是否纯数字串 不完整 179.cpp

#include "stdio.h" #include "string.h" void main() { printf("\n\t\t\t输入字符串,判断是否纯数字串\n"); printf("───────────────────────────────────────\n"); while(1) { char a[100],*p="0123456789",*b=a;