2018年1月5日

摘要: <html lang="en"><head><link rel="stylesheet" type="text/css" href="111.css"></head> <body> <div class="top"> </div> <div class="main"> <div class="lef 阅读全文
posted @ 2018-01-05 00:04 ^Rourou 阅读(136) 评论(0) 推荐(0) 编辑

2018年1月4日

摘要: <heml lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>主页</title><link rel="stylesheet" type="text/css" hre 阅读全文
posted @ 2018-01-04 00:22 ^Rourou 阅读(87) 评论(0) 推荐(0) 编辑

2018年1月3日

摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.or 阅读全文
posted @ 2018-01-03 09:22 ^Rourou 阅读(120) 评论(0) 推荐(0) 编辑

2018年1月1日

摘要: #include"iostream" using namespace std; static int n;//要变换的数 static int m;//要变换成的数 static int k;//变换的次数 static bool found;//查找结果 static int result[100 阅读全文
posted @ 2018-01-01 23:29 ^Rourou 阅读(194) 评论(0) 推荐(0) 编辑

2017年12月30日

摘要: #include<stdio.h> int tile=0;//整型变量,记录L型骨牌的数量 int Matrix[100][100];//定义数据结构 void ChessBoard(int tr,int tc,int dr,int dc,int size) {//tr和tc分别是棋盘左上角方格的行 阅读全文
posted @ 2017-12-30 22:51 ^Rourou 阅读(1028) 评论(0) 推荐(0) 编辑

2017年12月21日

摘要: #include<stdio.h> #include <time.h> int Fibo(int n) { if(n<=2) return 1; else return Fibo(n-1)+Fibo(n-2); } int main() { clock_t start, finish; double 阅读全文
posted @ 2017-12-21 23:48 ^Rourou 阅读(116) 评论(0) 推荐(0) 编辑

2017年12月20日

摘要: 代码: #include <stdio.h> int main(){ int a[50]; int i,j,maxCount=0,index=0,nCount=0; int n; printf("请输入n的数值:"); scanf("%d",&n); for(i=0;i<n;i++){ scanf( 阅读全文
posted @ 2017-12-20 20:34 ^Rourou 阅读(1781) 评论(0) 推荐(0) 编辑

2017年12月19日

摘要: #include <stdio.h> #include <stdlib.h> #define MAX 1024 #define M 10 int a[MAX][M]; void ForeCode(int forenum, int n) { int i, j; for(i = 0; i <= fore 阅读全文
posted @ 2017-12-19 19:51 ^Rourou 阅读(325) 评论(0) 推荐(0) 编辑

2017年12月18日

摘要: 登录验证:Logincheck.jsp <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%><%@ page import="java.sql.*" %>><!DOCTYPE HTML PUBLIC "-//W3C/ 阅读全文
posted @ 2017-12-18 21:59 ^Rourou 阅读(187) 评论(0) 推荐(0) 编辑

2017年12月17日

摘要: #include "stm32f10x.h"#include <stdio.h>#include <string.h> void RCC_cfg(void);void GPIO_cfg(void);void NVIC_cfg(void);void TIMER_cfg(void); int main( 阅读全文
posted @ 2017-12-17 21:36 ^Rourou 阅读(150) 评论(0) 推荐(0) 编辑