摘要: #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 阅读(30) 评论(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 阅读(19) 评论(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 阅读(28) 评论(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 阅读(17) 评论(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 阅读(17) 评论(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 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 第一个结果因为X+Y没有括号 第二个结果因为加了“ ”变成常量了 阅读全文
posted @ 2021-09-20 22:06 Lindseyyip 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 因为计算机中的浮点数是近似运算,所以得到这个答案 阅读全文
posted @ 2021-09-20 11:58 Lindseyyip 阅读(16) 评论(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 阅读(136) 评论(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 阅读(418) 评论(0) 推荐(0) 编辑