发工资咯 (C语言代码) 摘要:解题思路:每个人逐个拆分 累加张数注意事项:参考代码:#include<stdio.h>int a[6]={1,2,5,10,50,100};//分别是各个面额int b[102];//储存每个员工工…… 题解列表 2019年04月15日 0 点赞 0 评论 839 浏览 评分: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 评论 949 浏览 评分: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 评论 633 浏览 评分:0.0
Tom数 (C语言代码) 摘要:解题思路:注意整形 要unsignet注意事项:参考代码:#include<stdio.h> int main(){ int m; unsigned int n; while(scanf("%d",&…… 题解列表 2019年04月15日 0 点赞 0 评论 965 浏览 评分: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 评论 1538 浏览 评分:9.9
[编程入门]自定义函数求一元二次方程 (C语言代码) 摘要:解题思路:别慌,慢慢看。注意事项:参考代码:#include <stdio.h>#include <math.h>double dt(double a, double b, double c);int…… 题解列表 2019年04月14日 2 点赞 0 评论 1511 浏览 评分: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 评论 684 浏览 评分: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 评论 1031 浏览 评分: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 评论 660 浏览 评分: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 评论 637 浏览 评分:0.0