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 评论 485 浏览 评分: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 评论 799 浏览 评分: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 评论 434 浏览 评分:0.0
[编程入门]自定义函数求一元二次方程 (C语言代码) 摘要:解题思路:别慌,慢慢看。注意事项:参考代码:#include <stdio.h>#include <math.h>double dt(double a, double b, double c);int…… 题解列表 2019年04月14日 2 点赞 0 评论 1128 浏览 评分:0.0
Tom数 (C语言代码) 摘要:解题思路:注意整形 要unsignet注意事项:参考代码:#include<stdio.h> int main(){ int m; unsigned int n; while(scanf("%d",&…… 题解列表 2019年04月15日 0 点赞 0 评论 677 浏览 评分:0.0
矩阵转置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,a[100][100]; scanf("%d",&n); for(i=0;i<n;i++) …… 题解列表 2019年04月15日 0 点赞 0 评论 473 浏览 评分:0.0
C语言训练-"水仙花数"问题1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int pd(int a);int main(){ int a; scanf("%d",&a); { p…… 题解列表 2019年04月15日 2 点赞 0 评论 692 浏览 评分:0.0
去掉空格 (C语言代码) 摘要:解题思路:没过多的限制注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int t,i; …… 题解列表 2019年04月15日 0 点赞 0 评论 673 浏览 评分:0.0
[编程入门]自定义函数处理素数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int p(int a){ int i,j=0; if(a>2&&(a%2)!=0) { for(i=2;i<a;i++) { …… 题解列表 2019年04月15日 0 点赞 0 评论 630 浏览 评分:0.0
回文判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100]; int i,j,n; gets(s); n=str…… 题解列表 2019年04月15日 0 点赞 0 评论 534 浏览 评分:0.0