#include<stdio.h>
int main()
{
int t,p;
long long n;
scanf("%d",&t);
while(t--)
{
scanf("%d%lld",&p,&n);
long long pre1=1,pre2=1,now;
if(n<=2){
printf("1\n");
......................
阅读全部
|
mimijilu
贴于 2017年6月28日 21:54
hide
bbsi
#include <Windows.h>
#include <stdio.h>
#include <process.h>
#include <conio.h>
#include <time.h>
#define CHAIRS 3 //椅子的个数
#define BARBERS 1 //理发师的个数
#define CUSTOMESTOCOME 7 //将要来的顾客的数量
typedef HANDLE SEMAPHORE;
......................
阅读全部
|
飞雪都督
贴于 2017年6月21日 00:28
hide
bbsi
<!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.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<script language="vbscript">
sub go()
location.href = document.f.se.value
end sub
</script>
<body>
......................
阅读全部
|
wl2546
贴于 2017年6月20日 20:24
hide
bbsi
// FiveGame.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<stdlib.h>
#include<stdio.h>
#include<ctype.h>
#include<string.h>
#include<windows.h>
#define SPACE 18
const int MAX = 8;
const char player_c = 'U'; //User
......................
阅读全部
|
GBH1
贴于 2017年6月20日 10:42
hide
bbsi
#include "winsock2.h"
#include "ws2tcpip.h"
#include "iostream"
#include "stdio.h"
#pragma comment(lib,"ws2_32.lib")
/*定义IP头部数据结构*/
typedef struct _IP_HEADER
{
union
{
......................
阅读全部
|
wp231957
贴于 2017年6月19日 15:25
hide
bbsi
#include<stdio.h>
#include<stdlib.h>
#define MaxSize 1000
typedef int ElemType;
typedef struct Node
{
ElemType date;
struct Node * next;
}linklist;
......................
阅读全部
|
编程陶祥
贴于 2017年6月17日 21:16
hide
bbsi
//我感觉没什么问题,为什么运行会出错
//3)输入3个整数,按由小到大的顺序输出。要求设定3个指向整型变量的指针变量p1,p2,p3,最终使得p1指向最大的数,p2指向较大的数,p3指向最小的数。
//由main函数实现3个整数的输入,对指针变量p1,p2,p3的赋值,数据由小到大的输出。由上题中的swap函数实现两指针变量指向的值的交换
#include<stdio.h>
void swap(int *a,int *b)
{
int c;
c=*a;
*a=*b;
*b=c;
return;
......................
阅读全部
|
C_learnerwj
贴于 2017年6月17日 12:10
hide
bbsi
#include "graphics.h"
#include "math.h"
#include "dos.h"
#include "conio.h"
#include "stdlib.h"
#include "stdio.h"
#include "stdarg.h"
#define maxpts 15
#define pi 3.1415926
struct pts {
int x, y;
};
......................
阅读全部
|
我是个宝宝
贴于 2017年6月12日 22:48
hide
bbsi
#include<stdio.h>
#include<conio.h> /*清屏*/
#include <stdlib.h> /*显示目录*/
#include<string.h>
#define NUM 100
struct node
{
int jcbh; //教材编号
char jcmc[100]; //教材名称
char zz[100]; //作者
char cbs[100]; //出版社
float cbsj; //出版时间
......................
阅读全部
|
七点恒
贴于 2017年6月11日 22:39
hide
bbsi