自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (1)
  • 收藏
  • 关注

原创 C#简单的石头剪刀布游戏 初学不算太好马上更新

using System; using System.Dynamic; namespace WSL { class main : Many { static void Main(String[] args) { main ma = new main(); ma.Player = 3; ma.SystemPlayer = 1; ma.Game(ma.Player,.

2021-11-09 16:28:01 2444

原创 JAVA学习笔记no.1

public class xxx{ public static void main(String[]args) { System.out.println("alwh"); } } HelloWorld简单实例 不要去问

2021-10-31 14:06:29 88

原创 水文awa

#include<iostream> using namespace std; int main(){ cout << "hello" << endl; } 下一篇文章 将在 11.07日发布 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ———————————————————————————————————————————————————————————————— ——————————————————————————————————————.

2021-10-31 14:02:22 138

原创 Flex&Bison[学习笔记No.3]

试着做一个小练习 要求:识别数字 标识符 运算符 上代码: %{ #include<stdio.h> %} %% [0-9]+ {printf("NUMBER")}; [A-Za-z0-9]* {printf("ID")}; "+" {printf("ADD")}; "-" {printf("SUP")}; %% int main(int argc,char**argv) { yylex(); } [0-9]+ 表示匹配一个或多个字符

2021-10-31 13:57:35 115

原创 Flex&Bison[学习笔记No.2]

1.正则表达式 a|b --a与b选其中一个要么是a要么是b ab --a与b组成的字符串ab a* --a的克林闭包运算,即a,aa,aaa,aaaa [0-9] 可以接受0-9任意数字 [A-Za-z] 可以接受任何大小写字母 在FLEX中使用正则表达式: %{ #include<stdio.h> // 和C一样定义了头文件 %} %% stop printf("input stop"); //输入stop输...

2021-10-31 13:47:17 129

原创 Flex&Bison[学习笔记 No.1]

Flex&Bison[学习笔记 No.1] 前言:环境自己查找资料 第一次写文章awa 先上代码: %{ #include<stdio.h> // 和C一样定义了头文件 %} %% stop printf("input stop"); //输入stop输出input stop start printf("input start"); %% int main(int argc, c...

2021-10-31 13:23:06 128 1

bison&flex&mingw.zip

打开安装程序即可安装

2021-10-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除