摘要:
Static关键字 1.静态属性 public class Student { private static int age;//静态的变量 public double score;//非静态的变量 public static void main(String[] args) { Student s 阅读全文
摘要:
题目 P1009 [NOIP1998 普及组] 阶乘之和 题目链接 https://www.luogu.com.cn/problem/P1009 知识点 求阶乘正常做法: #include <stdio.h> long long jiecheng(long long n) { long long a 阅读全文