一、让用户可以输入信息
创建forms.py 创建基于表单的页面的方法几乎与前面创建网页一样:定义一个 URL ,编写一个视图函数并编写一个模板。一个主要差别是,需要导入包含表单 的模块forms.py 。 from django import forms
from .models impor…
代码
#include<bits/stdc.h>
using namespace std;
char a[51][51];
int r,c;
int fx[4]{0,0,1,-1};
int fy[4]{1,-1,0,0};
int tx,ty;
struct Node{int x,y,step;
};
int bfs(int x,int y){a[x][y]#;queue<Node> q;q.push({x,y,1});while(!q.empty()){Node Curre…