蓝桥杯回文数字C语言 摘要:#include<stdio.h>int fun(char *s,char *q){ while(q>s&&*q==*s) { q--; s++; } if(s>q||s==q) return 1…… 文章列表 2020年11月08日 0 点赞 0 评论 210 浏览 评分:0.0
数据结构与算法1675顺序表的操作C语言 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>#define maxsize 100typedef struct { char elem[1…… 文章列表 2020年11月09日 0 点赞 0 评论 641 浏览 评分:0.0
蓝桥杯2013年第四届真题-农场阳光 (C语言) 摘要:```c #include #include void jisuan(float sl,float sm,float chang,float kuang); float x[100],y[10…… 文章列表 2020年11月12日 0 点赞 0 评论 561 浏览 评分:0.0
题目:1008题解 摘要:#include<iostream> using namespace std; int main() { int score; cin >> score; if(score >=…… 文章列表 2020年11月20日 0 点赞 0 评论 527 浏览 评分:0.0
利用指针交换实现三个整数从小到大排序 摘要:# include <stdio.h> void swap(int *p, int *q) { int t; t = *p; *p = *q; *q = t; } void swap_…… 文章列表 2020年11月25日 0 点赞 0 评论 406 浏览 评分:0.0
刷题第1周Java 摘要:Java小知识1. 对于给出一个数字求它是个几位数:(1)int num=****;String str=String.valueOf(num);System.out.println(str.leng…… 文章列表 2020年12月06日 0 点赞 0 评论 682 浏览 评分:0.0
第9周训练(python代码 F I不会) 摘要:#A apple=list(map(int,input().split())) height=int(input())+30 count=0 for i in apple: if h…… 文章列表 2020年12月17日 0 点赞 0 评论 466 浏览 评分:0.0
java中的一个数的N次方 摘要:在Java中一个数的N次方不可以写成:a^0这种形式,算得的数不正确;正确的写法为Math.pow(a,0);此外,Math中常用的函数有/** *Math.sqrt()//计算平方…… 文章列表 2020年12月19日 0 点赞 0 评论 700 浏览 评分:0.0
JAVA + WeatherWebService 实现天气预报接口调取 摘要:# 两步完成接口调取## 第一步:引入jar包1. [在线jar包](http://www.swzhinan.com/post/209.html)2. 若在线jar包失效,私信我即可。## 第二步:创…… 文章列表 2021年01月04日 0 点赞 0 评论 865 浏览 评分:0.0
Java关键字和保留字 摘要:# Java关键字和保留字 #### 关键字 Java 语言中有一些具有特殊用途的词被称为关键字。关键字对 Java 的编译器有着特殊的意义,在程序中应用时一定要慎重哦!! Java 中…… 文章列表 2021年01月23日 0 点赞 0 评论 471 浏览 评分:0.0