明明的随机数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int a[103],b[103];int main(){ int n,m; scanf("%d",&n); int i,j,k; f…… 题解列表 2019年04月15日 1 点赞 0 评论 1385 浏览 评分:9.9
[编程入门]自定义函数求一元二次方程 (C语言代码) 摘要:解题思路:别慌,慢慢看。注意事项:参考代码:#include <stdio.h>#include <math.h>double dt(double a, double b, double c);int…… 题解列表 2019年04月14日 2 点赞 0 评论 1399 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int j,i,n; char a[100],b[100]; scanf("…… 题解列表 2019年04月14日 0 点赞 0 评论 585 浏览 评分:0.0
字符串连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100],b[100]; int i,j; while(scanf("%s %s",a,b)!=E…… 题解列表 2019年04月14日 0 点赞 0 评论 923 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,k,b[50],j; char a[50]; gets(a); …… 题解列表 2019年04月14日 0 点赞 0 评论 586 浏览 评分:0.0
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,k; char a[255]; gets(a); k=strle…… 题解列表 2019年04月14日 0 点赞 0 评论 560 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define N 1000int main(){ char a[N]; int i; scanf(…… 题解列表 2019年04月14日 1 点赞 1 评论 1529 浏览 评分:6.0
字符串链接 (C语言代码)还可以这题!!! 摘要:解题思路:思路如下注意事项:参考代码:(复制到编译器上看,更加方便!!!)#include<stdio.h>#include<string.h>void mystrcat(char dststr[],…… 题解列表 2019年04月14日 0 点赞 0 评论 1011 浏览 评分:0.0
字符串排序 (C语言代码)卡了比较久的。。。 摘要:解题思路:思路还可以。。注意事项:需要用getchar()吞掉‘\n’; 还有,我觉得需要注意n的值,如果n<=0,就要while(n<=0) scanf("%d",&n);参考代码:…… 题解列表 2019年04月14日 0 点赞 0 评论 1580 浏览 评分:9.9
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int k,i; char str[100]; gets(str); k=s…… 题解列表 2019年04月14日 0 点赞 0 评论 525 浏览 评分:0.0