文章列表
算数运算符的中后缀转换
摘要:#include<iostream>#include<algorithm>#include<cstring>#define max 11using namespace std;struct zzhs{……
贪吃蛇源码,想玩或者研究的拿去慢慢看吧
摘要:#include<stdio.h>#include<stdlib.h>#include<windows.h> #include<time.h>#include<conio.h> int X=60;//……
简单的A+B(C++和Python和Java)
摘要:C++:
```cpp
#include
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)cout……
用指针函数来写Hello World!(进阶版Hello World)
摘要:#include<bits/stdc++.h>using namespace std;const char* Return() { const char* g = "Hello,World!"……
01背包暴力dfs与记忆化
摘要:#include<iostream>#include<cstring>#include<algorithm>using namespace std;int n,m;//n表示有几个物品,m表示背包能装……