回文判断 (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 评论 631 浏览 评分: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 评论 830 浏览 评分:0.0
去掉空格 (C语言代码) 摘要:解题思路:没过多的限制注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int t,i; …… 题解列表 2019年04月15日 0 点赞 0 评论 884 浏览 评分:0.0
发工资咯 (C语言代码) 摘要:解题思路:每个人逐个拆分 累加张数注意事项:参考代码:#include<stdio.h>int a[6]={1,2,5,10,50,100};//分别是各个面额int b[102];//储存每个员工工…… 题解列表 2019年04月15日 0 点赞 0 评论 760 浏览 评分:6.0
C语言训练-"水仙花数"问题1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int pd(int a);int main(){ int a; scanf("%d",&a); { p…… 题解列表 2019年04月15日 2 点赞 0 评论 852 浏览 评分: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 评论 552 浏览 评分:0.0
Tom数 (C语言代码) 摘要:解题思路:注意整形 要unsignet注意事项:参考代码:#include<stdio.h> int main(){ int m; unsigned int n; while(scanf("%d",&…… 题解列表 2019年04月15日 0 点赞 0 评论 843 浏览 评分:0.0
明明的随机数 (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 评论 1380 浏览 评分:9.9
[编程入门]自定义函数求一元二次方程 (C语言代码) 摘要:解题思路:别慌,慢慢看。注意事项:参考代码:#include <stdio.h>#include <math.h>double dt(double a, double b, double c);int…… 题解列表 2019年04月14日 2 点赞 0 评论 1395 浏览 评分: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 评论 579 浏览 评分:0.0