C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h" #include<stdlib.h>int main(){ int a,i,n; scanf("%d",&a); i=1,n=1; d…… 题解列表 2018年03月11日 0 点赞 0 评论 676 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ printf("input a and b:\n"); scanf("%d %d",&a,&b);…… 题解列表 2018年03月11日 0 点赞 0 评论 616 浏览 评分:0.0
猜猜这是啥? 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[100],str2[100]; gets(str); int i,s=0;…… 题解列表 2018年03月11日 0 点赞 0 评论 755 浏览 评分:0.0
蓝桥杯算法提高VIP-扫雷 (Java代码) 摘要:解题思路:尝试了6次还是格式错误,有大佬知道的告诉我一下为什么吗注意in.next是读取空格或者换行之前的,这题输入没有空格注意事项:参考代码:import java.util.Scanner; p…… 题解列表 2018年03月11日 0 点赞 1 评论 583 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<ctype.h>int main(){ int e = 0,d = 0,k = 0,q = 0; char a[50]…… 题解列表 2018年03月11日 0 点赞 0 评论 733 浏览 评分:0.0
蓝桥杯算法提高VIP-质数的后代 (Java代码) 摘要:解题思路:不知道哪里错了,有大佬帮忙看一下吗注意事项:参考代码:import java.util.ArrayList; import java.util.Scanner; public class…… 题解列表 2018年03月11日 0 点赞 0 评论 1039 浏览 评分:0.0
蓝桥杯基础练习VIP-2n皇后问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int g[8][8];int num=0;int n;int hq[8],bq[…… 题解列表 2018年03月11日 0 点赞 0 评论 1038 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ char *num[]= {"zero","one","two","three","four","five…… 题解列表 2018年03月11日 0 点赞 0 评论 995 浏览 评分:0.0
IP判断 (C语言代码) 摘要:解题思路:goto 语句 可能我的有点麻烦注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main(){ int…… 题解列表 2018年03月11日 0 点赞 0 评论 739 浏览 评分:0.0