精品文章 String的substring()的用法总结---JAVA 摘要:substring()的作用就是截取父字符串的某一部分public String substring(int beginIndex, int endIndex)第一个参数int为开始的索引,对应Str…… 文章列表 2020年11月05日 0 点赞 0 评论 769 浏览 评分:0.0
1149: C语言训练-计算1~N之间所有奇数之和 摘要:```c #include int main() { int n,i,sum=0; scanf("%d",&n); for(i=1;i…… 文章列表 2020年11月05日 0 点赞 0 评论 677 浏览 评分:0.0
1014[编程入门]阶乘求和 摘要:``` #include int main() { int n,i; long int sum1=1,sum2=0; scanf("%d",&n); for(i=1;i…… 文章列表 2020年11月05日 0 点赞 0 评论 530 浏览 评分:0.0
学习编程警惕“眼高手低” 摘要:“眼高手低”这个词第一次听到是我在上初中时,数学老师讲的,为什么会用这个词,因为许多数学题,比如方程式,我们看着感觉“嗯简单,不用练了,下一个”待到考试的时候,遇到这个题了,嗯感觉会,但是一做就错,这…… 文章列表 2020年11月02日 0 点赞 0 评论 3769 浏览 评分:9.3
1025: [编程入门]数组插入处理 摘要:#include<stdio.h>int main(){ int a[100],i,n,j=0; for(i=0;i<9;i++) scanf("%d",&a[i]); …… 文章列表 2020年10月30日 0 点赞 0 评论 313 浏览 评分:0.0
1008[编程入门]成绩评定 摘要:#include<stdio.h>int main(){ int x; scanf("%f",&x); if(x>=90) printf("A"); else i…… 文章列表 2020年10月29日 0 点赞 0 评论 511 浏览 评分:0.0
1007[编程入门]分段函数求值 摘要:#include<stdio.h>int main(){ float x; scanf("%f",&x); if(x<1) printf("%.0f",x); e…… 文章列表 2020年10月29日 0 点赞 0 评论 563 浏览 评分:0.0
1005[编程入门]温度转换 摘要:#include<stdio.h>int main(){ float f,c; scanf("%f",&f); c=(f-32)*5/9.0; printf("c=%.2f\n…… 文章列表 2020年10月29日 0 点赞 0 评论 580 浏览 评分:0.0
第十一届蓝桥杯比赛总结 摘要:在监考学生过程中,观察学生答题表现,总结需要提高改进的地方,为以后参赛学生训练提高所用。 # 一、比赛题目一定要先挑软柿子捏 蓝桥杯的比赛题目主要有填空题和代码题,基本上都是10个题目左右。比…… 文章列表 2020年10月28日 0 点赞 1 评论 948 浏览 评分:9.9
精品文章 动态规划经典问题:全面探讨数字三角形(数塔问题)(C/C++) 摘要:题目简述(题目:2127' https://www.dotcpp.com/oj/problem2127.html '): 数字三角形如下: …… 文章列表 2020年10月23日 0 点赞 1 评论 1475 浏览 评分:7.6