首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看全站
<html>
<head>
<meta charset="utf-8">
<title>素數算法</title>
</head>
<body>
<p>素數算法</p>
<br>
<script > 

var arr=new Array();
var n=parseInt(prompt(" 請輸入要列出素數在多少整數范圍之內:", " "));
......................
阅读全部 | qunxingw 贴于 2020年11月26日 13:51     hide bbsi
pygame
阅读全部 | 青殇 贴于 2020年11月25日 09:44     hide bbsi
<!DOCTYPE html>
<html>
<head>
<title>商品详情</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="css/index.css" />
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/popper.js/1.15.0/umd/popper.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
......................
阅读全部 | yuyouxsdh 贴于 2020年11月25日 08:44     hide bbsi
#!/usr/bin/python3
print('y=应用层,b=表示层,h=会话层,c=传输层,wa=网络层,s=数据链路层,wu=物理层')
print('请输入答案,以空格隔开:')
while True:
b=[-1,-1,-1,-1,-1,-1,-1]
a=input().split()
if a[0]=='exit' : break;
if a[0]=='js':
c=eval(a[1])
print (c)
continue
for i in range(0,len(a)):
......................
阅读全部 | mimijilu 贴于 2020年11月23日 12:53     hide bbsi
#include <stdio.h>
#include <stdbool.h>
#include <math.h>
#include <stdlib.h>

#define n 8
bool hash[n+1];
int p[n+1];
int count =0;

//暴力法 无优化
void generate(int index)
......................
阅读全部 | 晶贤 贴于 2020年11月22日 17:01     hide bbsi
<html>
<head>
<meta charset="utf-8">
<title>素數算法</title>
</head>
<body>
<p>素數算法</p>
<br>
<script src=prime.js> 

var arr=new Array();
var n=parseInt(prompt(" 請輸入要列出素數在多少整數范圍之內:", " "));
......................
阅读全部 | qunxingw 贴于 2020年11月22日 11:46     hide bbsi
#include<stdio.h>
main()
{
printf("Hello");
}
阅读全部 | lingyuner 贴于 2020年11月22日 11:19     hide bbsi
<html>
<head>
<title>test</title>
<meta charset="utf-8">
</head>
 
 
<body>
 
 
<script >
var arr=[9,87,25,36,89,14,51,19,63];
......................
阅读全部 | qunxingw 贴于 2020年11月22日 11:18     hide bbsi
#include <stdio.h>
#include<string.h>
enum course {KONG,tiyu,xianxingdaishu,weijifen,cyuyan,yingyu}sub;
int s,w;
int fun(int s,int w,enum course t[6][7])
{int p=0,q=0;
int i,j;
for(i=0;i<6;i++)
{for(j=0;j<7;j++)
{if(i==1&&j==0)
t[i][j]=tiyu;
else if(i==0&&j==2)
......................
阅读全部 | lx1455172065 贴于 2020年11月22日 08:45     hide bbsi
#include <stdio.h>
//结点类型定义
typedef struct Node
{
int data;
struct Node *next;
}Node,*LinkList; //
 
//主函数
int main()
{
int InitList(LinkList *L);
......................
阅读全部 | average 贴于 2020年11月18日 20:43     hide bbsi
上一页 80 81 82 83 84 85 86 87 88 89 下一页