网页打开后显示的是”预约“界面 如何实现打开后直接显示“店铺秀
‘的内容
<!DOCTYPE html>
<html>
<head lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta content="telephone=no" name="format-detection"/>
......................
阅读全部
|
suiyuacao88
贴于 2015年2月5日 19:04
hide
bbsi
#include <iostream>
int main()
{
int x = 5;
int y = 7;
std::cout << “\n“;
std::cout << x + y << “”<< x * y;
std::cout << “\n”;
return θ
阅读全部
|
hhhhh焕
贴于 2015年2月3日 22:21
hide
bbsi
<!DOCTYPE html>
<html>
<head>
<title>demo2html</title>
<meta charset="utf-8"/>
<style type="text/css">
</style>
</head>
<body>
<script type="text/javascript">
/*创建函数和字面量函数*/
......................
阅读全部
|
chaiyesong
贴于 2015年1月29日 11:02
hide
bbsi
#include <iostream>
using namespace std;
int main()
{
cout<<“rf”;
}
阅读全部
|
天使梦魔
贴于 2015年1月22日 20:25
hide
bbsi
#include <iostream>
using namespace std;
int main()
{
cout<<“rf”;
}
阅读全部
|
天使梦魔
贴于 2015年1月22日 20:25
hide
bbsi
#include"stdio.h"
#define N 20
void ModEuler(float(*f)(float,float),float x0,float y0,float xn,int n)
{ int i;
float yp,yc ,x=x0,y=y0,h=(xn-x0)/n;
printf("x[0]=%f\ty[0]=%f\n",x,y);
for(i=1;i<=n;i++)
{
yp=y+h*(*f)(x,y);
x=x0+i*h;
yc=y+h*(*f)(x,yp);
y=(yp+yc)/2;
......................
阅读全部
|
yang_guang_v
贴于 2015年1月22日 15:45
hide
bbsi
#include"stdio.h"
#define N 20
void ModEuler(float(*f)(float,float),float x0,float y0,float xn,int n)
{ int i;
float yp,yc ,x=x0,y=y0,h=(xn-x0)/n;
printf("x[0]=%f\ty[0]=%f\n",x,y);
for(i=1;i<=n;i++)
{
yp=y+h*(*f)(x,y);
x=x0+i*h;
yc=y+h*(*f)(x,yp);
y=(yp+yc)/2;
......................
阅读全部
|
yang_guang_v
贴于 2015年1月22日 15:44
hide
bbsi
#include"stdio.h"
#define N 20
void ModEuler(float(*f)(float,float),float x0,float y0,float xn,int n)
{ int i;
float yp,yc ,x=x0,y=y0,h=(xn-x0)/n;
printf("x[0]=%f\ty[0]=%f\n",x,y);
for(i=1;i<=n;i++)
{
yp=y+h*(*f)(x,y);
x=x0+i*h;
yc=y+h*(*f)(x,yp);
y=(yp+yc)/2;
......................
阅读全部
|
yang_guang_v
贴于 2015年1月22日 15:44
hide
bbsi
#include<stdio.h>
#include<math.h>
void main()
{
int a,b,c;
double t,x1,x2;
t=b*b-4*a*c;
printf("请输入a,b,c的值:");
scanf("%d%d%d",&a,&b,&c);
x1=-b+(sqrt(t))/(2*a);
x2=-b-(sqrt(t))/(2*a);
if(t>0)
......................
阅读全部
|
等雨说放弃
贴于 2015年1月19日 00:06
hide
bbsi
#include<stdio.h>
#include<stdlib.h>
double polynomial(int *p, int n, double x)
{
int i;
double m=0;
for(i=0;i<n;i++)
{
m=*(p+i)*x+m;
}
printf("%lf",m);
return 0;
......................
阅读全部
|
诸葛欧阳
贴于 2015年1月10日 11:34
hide
bbsi