题解列表
题解 1063: 二级C语言-统计字符(C语言数组+for循环+gets()函数实现)
摘要:解题思路:上次是用while循环,getchar()函数进行输入,实现的统计,文章链接:https://blog.dotcpp.com/a/88928本次用的gets()函数向数组中写入数据,再用fo……
可ACAC1111111111111111111111
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { int sum1=0,s……
二级C语言-等差数列 简单小白
摘要:```c
#include
int main()
{
int sum=0,i,x=2,n;
scanf("%d",&n);
for(i=0;i……
使用实现区间查询最小值,和的线段树
摘要:解题思路:看注释注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 1000010#define INF 1000010……
题解 1062: 二级C语言-公约公倍(C)
摘要:解题思路:第三遍了~参考代码:#include<stdio.h>
int main(void){
int m,n;
int factor,multiple;
int check;
……
1083——————Hello,World!
摘要:题目 1083: Hello, world!
**题目描述**
This is the first problem for test. Since all we know the ASCII ……
题解 1061: 二级C语言-计负均正(C)
摘要:注意事项:统计个数,和计算均值,在同一个for中实现,可以减少遍历数组的次数。参考代码:#include<stdio.h>
int main(void){
int array[20];
……
题解 1060: 二级C语言-同因查找(C)
摘要:解题思路:看代码参考代码:#include<stdio.h>
int main(void){
int i,num;
for(i=10;i<=1000;i++){
if(i%4……
1071——————阶乘公式求职
摘要: n=int(input())
t=1
s=0
for i in range(1,n+1):
t=t*i
s=s+1.0/t
……