优质题解 C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:解题思路:解决此题目分为2步骤:1、获取字符串2、字符串逆转注意事项:第一步 获取用户输入字符串,以及字符串长度。 char *string=NULL; int length=0; …… 题解列表 2019年03月06日 9 点赞 49 评论 11182 浏览 评分:7.9
优质题解 简单的a+b (C语言代码) 摘要:解题思路:这道题目的重点是scanf函数。函数名: scanf 功 能: 执行格式化输入 用 法: int scanf(char *format[,argument,...]);scanf()函数是通…… 题解列表 2019年03月06日 64 点赞 122 评论 74109 浏览 评分:9.5
求大佬指点一下,输出和答案一模一样但就是显示格式错误(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int shu,i,j,x,y; int a[100][100]={0}; scanf("%d",&shu); …… 题解列表 2019年03月05日 0 点赞 0 评论 906 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:#include<iostream> using namespace std; int xh(int n); int main() { int i,j,t,MaxLen; while(…… 题解列表 2019年03月05日 0 点赞 0 评论 511 浏览 评分:0.0
蛇行矩阵 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h>int str[200][200];int sum(int n);int main(){ int …… 题解列表 2019年03月05日 0 点赞 0 评论 912 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (Java代码) 摘要:解题思路:直接输出即可注意事项:参考代码:import java.util.Scanner;public class Main {public static void main(String[] ar…… 题解列表 2019年03月05日 0 点赞 0 评论 869 浏览 评分:0.0
蓝桥杯基础练习VIP-龟兔赛跑预测 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> #include <stdio.h> using namespace std; …… 题解列表 2019年03月05日 0 点赞 0 评论 870 浏览 评分:9.9
字符串输入输出函数 (C语言代码) 摘要:#include<stdio.h> void GetReal(double *p) { double x; printf("please input a number:\n…… 题解列表 2019年03月05日 0 点赞 0 评论 1427 浏览 评分:0.0
蛇行矩阵 (Java代码) 摘要:解题思路: 0,0 0,1 0,2 0,3 1,0 1,1 1,2 2,0 2,1 3,0注意事项:参考代码:import java.util.Scanner;public class…… 题解列表 2019年03月05日 0 点赞 0 评论 739 浏览 评分:0.0