C语言训练-数字母-题解(C语言代码) 摘要:真恶心,printf("%s") 就错12% gtes就没有 #include #include int main() { char …… 题解列表 2019年11月02日 0 点赞 0 评论 1088 浏览 评分:9.0
C语言训练-数字母-题解(C语言代码) 摘要:真恶心,printf("%s") 就错12% gtes就没有 #include #include int main() { char …… 题解列表 2019年11月02日 0 点赞 0 评论 683 浏览 评分:0.0
蓝桥杯2013年第四届真题-格子刷油漆-题解(动态规划) 摘要:原文链接:https://blog.csdn.net/qq_35078631/article/details/54730870 ```c #include using namespace std…… 题解列表 2019年11月02日 0 点赞 1 评论 1982 浏览 评分:8.4
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要: #include //char *STRCAT(char *dest, const char *src) //{ // char *tmp = dest;…… 题解列表 2019年11月02日 0 点赞 0 评论 647 浏览 评分:0.0
[编程入门]自定义函数之字符串反转-题解(C语言代码) 摘要: #include #include int main() { char input[80]; scanf("%s",input); …… 题解列表 2019年11月02日 0 点赞 0 评论 533 浏览 评分:0.0
[编程入门]利润计算-题解(C语言代码) 摘要:```c #include int main() { int i,a; scanf("%d",&a); if(a…… 题解列表 2019年11月02日 0 点赞 0 评论 917 浏览 评分:0.0
求平均工资-题解(C++代码)简单简短的算法,无需数组 摘要:这是一道简单的求平均值的问题,可以不运用数组。 代码如下: ```cpp #include using namespace std; int main() { int n,i,x,s…… 题解列表 2019年11月02日 0 点赞 0 评论 2007 浏览 评分:9.9
分段计算-题解(C++代码) 摘要:没有太大的问题,注意细节就不会出错 代码如下: ```cpp #include using namespace std; int main() { int x,y; cin>>x…… 题解列表 2019年11月02日 0 点赞 0 评论 1056 浏览 评分:0.0
[编程入门]利润计算-题解(C++代码) 摘要: import java.util.Scanner; public class Main{ public static void main(String[] args){ Scann…… 题解列表 2019年11月02日 0 点赞 1 评论 451 浏览 评分:5.3
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:## **解题思路:** 1.这道题难点在于数组末尾的数字如何转移到数组的开头。 2.我们用两个数组实现,如果在我们把数组末尾需要转移到数组开头的数字单独存在数组中,其余不涉及末尾转开头的数字存…… 题解列表 2019年11月02日 0 点赞 0 评论 698 浏览 评分:0.0