09 2021 档案

摘要:通过开学的一个月,利用课余空闲时间,我阅读了周爱明老师的《大道至简》。这本软件工程方面的著作让我深刻地认识到了编程思想。 本书被誉为“激荡新思的佳作”,他所传达的不仅仅是编程的语言,而是思想。此书一共十一个章节,其中每个章节都有几个小节,而每一个小节都有一个生动且丰富的标题直指中心,框架结构比较明显 阅读全文
posted @ 2021-09-30 15:38 Lindseyyip 阅读(79) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> #include <stdlib.h> #define MAXSIZE 100 //元素进栈 int push(char* zhan,int top,char elem){ zhan[top]=elem; top++; return top; } //元素出栈 阅读全文
posted @ 2021-09-27 22:46 Lindseyyip 阅读(31) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h> int main() { int n; scanf("%d",&n); while(n>100) { scanf("%d",&n); } char a[101]; getchar(); gets(a); int i; int j; for(j=0;a[j]!='\ 阅读全文
posted @ 2021-09-27 22:43 Lindseyyip 阅读(20) 评论(0) 推荐(0) 编辑
摘要:package myproject4; public class T { int x=2; static int y=3; public static void method() { System.out.println("实例变量x = " + new T().x); System.out.pri 阅读全文
posted @ 2021-09-26 12:17 Lindseyyip 阅读(29) 评论(0) 推荐(0) 编辑
摘要:package myproject2; import java.util.*; import java.lang.Math; public class RandomCommon { public static char operator(int n,int se) { char op=' '; Ra 阅读全文
posted @ 2021-09-25 22:30 Lindseyyip 阅读(18) 评论(0) 推荐(0) 编辑
摘要:package myproject4; import java.util.*; public class Subject1 { public static void main(String[] agrs) { System.out.println("请输入月份"); Scanner sc =new 阅读全文
posted @ 2021-09-22 22:24 Lindseyyip 阅读(18) 评论(0) 推荐(0) 编辑
摘要:今天用c语言写了有序链表的合并。#include <stdio.h> #include <stdlib.h> typedef int ElementType; typedef struct Node *PtrToNode; struct Node { ElementType Data; PtrToN 阅读全文
posted @ 2021-09-21 21:20 Lindseyyip 阅读(38) 评论(0) 推荐(0) 编辑
摘要:第一个结果因为X+Y没有括号 第二个结果因为加了“ ”变成常量了 阅读全文
posted @ 2021-09-20 22:06 Lindseyyip 阅读(15) 评论(0) 推荐(0) 编辑
摘要:因为计算机中的浮点数是近似运算,所以得到这个答案 阅读全文
posted @ 2021-09-20 11:58 Lindseyyip 阅读(17) 评论(0) 推荐(0) 编辑
摘要:package myproject2; import java.util.*; public class sizeyunsuan { public static int[] randomCommon(int n,int min, int max){ /* if (n > (max - min + 1 阅读全文
posted @ 2021-09-19 21:31 Lindseyyip 阅读(139) 评论(0) 推荐(0) 编辑
摘要:package myproject3; import java.util.Scanner; public class PaperManagement { static int sum=0; static Scanner sc = null; static ScoreInformation[] s = 阅读全文
posted @ 2021-09-18 23:38 Lindseyyip 阅读(432) 评论(0) 推荐(0) 编辑
摘要:结论:可以用valueof获得枚举类型 可以比较枚举类型的数值是否相等 阅读全文
posted @ 2021-09-18 21:53 Lindseyyip 阅读(17) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示