Java-super关键字

笔记  Java 

Java-super关键字基本介绍super代表父类的引用,用于访问父类的属性,方法和构造器基本语法访问父类的属性,但不能访问父类的private属性​super.属性名A类package com.hsp.extend._super;public class A { public int n1

Java 访问修饰符

笔记  Java 

Java 访问修饰符

c++ 结构体demo

笔记 

struct.cpp#include <iostream>using namespace std;struct inflatable{ string name; int age; float weight;};struct new_struct{ string n

C求字符串中出现次数最多的数还有出现的次数

笔记 

#include <stdio.h>const int N = 1000000;char ch[N];int main(){ gets(ch); int count[127]={0}; for(int i=0; ch[i]; i++) count[ch[i]]++;

输出菱形作业

笔记 

#include <cstdio>int main(void) { for(int i = 1;i<=4;i++){ for(int j = 1;j<=4-i;j++){ printf(" "); }

最大公约数-题解(语法题)


更相减损术https://baike.baidu.com/item/更相减损术/449183c++ 代码#include <iostream>using namespace std;int gcd(int a,int b){ while(a != b) { if (a

求n的阶乘


#include <iostream>using namespace std;int fact(int n) { int m = 1; for(int i = 1;i<=n;i++){ m*=i; } cout << m <&

vue项目部署后点击其它页面报404 解决方法


nginx修改添加下面这一句就行了

VSCODE Vue emmet语法失效问题解决


VSCODE Vue emmet语法失效问题解决打开vscode ,进入设置,搜索emmet.include就能看到下面的选项添加两个项即可vue htmlvue-html html

递归思想-猴子吃桃问题


题解-猴子吃桃问题猴子吃桃子问题:有一堆桃子,猴子第一天吃了其中的一半,并再多吃了一个!以后每天猴子都吃其中的一半,然后再多吃一个。当到第10天时,想再吃时(即还没吃)发现只有1个桃子了。问题:最初共多少个桃子?思路分析: 逆推day = 10 – > 1 peachday = 9 -->