文章列表
实心矩形111111
摘要:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,d; char c; cin>>a>>b>>c>>d;……
打出等腰直角三角形(二次修改)
摘要:#include<bits/stdc++.h>//之前卡没了,又弄回来了//注:i是行数,j是列数,c是构成三角形的内容物using namespace std;int main(){ int ……
二维数组(第一次写知识类文章,希望大家喜欢)
摘要:数学中点动成线,线动成面,用编程的语言来说,变量就是一个点,一维列表就相当于线,而二维列表就是面,这里有一个定义①:输入#include <bits/stdc++.h>using namespace ……
一维差分 insert初始化差分数组 insert(i,i,a[i])
摘要:#include<iostream>
using namespace std;
const int N=10050;
int a[N],s[N];
void insert (int l,int……