题解列表
题解 1466: 蓝桥杯基础练习VIP-字符串对比
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class 字符串对比 {
/**
* @param args
*/
……
C***********************************************
摘要:#include<stdio.h>int main(){ int s[1000],n,i; scanf("%d",&n);getchar(); for(i=0;i<n;i++) ……
Java**************************************
摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner scann……
C***********************************************
摘要:#include<stdio.h>int main(){ int n,a[100][100],i,j,k=1; scanf("%d",&n); for(i=0;i<n;i++) ……
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,t,s; scanf("%d",&t); if(t/10<1) ……
迭代法求平方根 题解
摘要:解题思路:先假设x1的值x1=a/2确定x2x2=(x1+a/x1)/2注意事项:输出要注意小数位注意for与while的区别参考代码:import java.util.Scanner;/* * 用迭……
蓝桥杯][算法提高VIP]我们的征途是星辰大海
摘要:解题思路:注意事项:每行指令都是从新回到原点再走的参考代码:#判断每走一步的结果
def check(x,y,lab):
if x>=len(lab) or x<0 or y>=len(l……
字符串的输入输出处理
摘要:#include #include#includeusing namespace std;
int main()
{
int n;char str[1000];
cin>>n……
题解 1479: 蓝桥杯算法提高VIP-删除数组中的0元素
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class 删除0 {
/**
* @param args
*/
pu……