一位热心的老大爷-巧用scanf-极其简单-精简-IP判断-题解(C语言代码) 摘要:巧用scanf #include int main(){ int a,b,c,d; int n; while(1){ …… 题解列表 2019年12月10日 0 点赞 3 评论 887 浏览 评分:9.6
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:采用指针的方法把字符串传递给自定义函数,并将结果放到指定的数组中 参考代码: ```c #include void strlink(char* des,char* str,char* s);…… 题解列表 2019年12月10日 0 点赞 3 评论 1825 浏览 评分:9.1
蓝桥杯历届试题-回文数字-题解(C++代码) 摘要:我用两个函数分别求和与回文数,写的比不上他们的好,但是感觉易懂 #include using namespace std; bool sum(int n,int t) { int m,…… 题解列表 2019年12月10日 0 点赞 0 评论 806 浏览 评分:0.0
优质题解 [编程入门]宏定义的练习-题解(C语言代码) 摘要:**余数?** 在整数的除法中,只有能整除与不能整除两种情况。当不能整除时,就产生余数,取余数运算:a mod b = c(b不为0) 表示整数a除以整数b所得余数为c,如:7÷3 = 2 ···…… 题解列表 2019年12月10日 0 点赞 9 评论 6309 浏览 评分:7.6
登陆验证问题(二)-题解(C语言代码) 自我感觉应用了模块化编程的思想 摘要:#include #include int check(char *a,char *b) { char user[]={"dotcpp"}; char passwor…… 题解列表 2019年12月10日 0 点赞 0 评论 868 浏览 评分:6.0
登陆验证问题(二)-题解(C语言代码) 摘要:#include #include int deal(char *c,char *d) { int x=2; char a[100],b[100]; w…… 题解列表 2019年12月10日 0 点赞 0 评论 819 浏览 评分:0.0
统计成绩-题解(C语言代码)满分题解!! 摘要: #include #define N 10 int main() { int i,j,k,grades,cntfail=0,sum=0; …… 题解列表 2019年12月10日 0 点赞 0 评论 1167 浏览 评分:8.0
统计字符个数-题解(C语言代码)满分题解!! 摘要:` #include #include #define N 10 int main() { int i,j,k,x; …… 题解列表 2019年12月10日 0 点赞 0 评论 1390 浏览 评分:9.0
Kanna-最大数问题--C 摘要: #include int main(){ int max , n; scanf("%d", &n); //如果第一个输入的值就是-1…… 题解列表 2019年12月10日 0 点赞 0 评论 1472 浏览 评分:8.0
C语言训练-斐波纳契数列-题解(C++代码) 摘要:递归数组求解 ```cpp #include using namespace std; int main() { int n_int; cin >> n_int; int…… 题解列表 2019年12月10日 0 点赞 0 评论 1255 浏览 评分:8.7