#include <stdio.h>
void main()
{
int a,b,c;
float price;
printf("****欢迎光临本店****\n");
printf("请选择您需要的商品:\n");
printf("1、日用品\t2、文具\t3、食品\n");
scanf("%d",&a);
if (a==1)
{
printf("*1、牙刷(3.5元/把)*\n*2、牙膏(6.2元/条)*\n*3、肥皂(2元/盒)*\n*4、毛巾(8.6元/条)*\n");
......................
阅读全部
|
锦芳
贴于 2013年4月9日 20:39
hide
bbsi
#include <stdio.h>
#include <math.h>
void main()
{
int a,b;
printf("请输入一个任意整数:");
scanf("%d",&a);
b=a%2;
if(a>0)
{
if(b==0)
printf("这是一个正偶数!");
......................
阅读全部
|
锦芳
贴于 2013年4月9日 20:38
hide
bbsi
采用我们教材上的Sqlist定义的顺序表作为存储结构,实现将线性表(a1,a2,... an)重新排列为以a1为界的两部分,前一部分之值均小于a1,后一部分之值均大于a1 (假设结点值类型Elemtype可以比较大小)的一个算法(注意不是写程序,参照书上的算法的写法)。
阅读全部
|
人青木美
贴于 2013年4月9日 19:48
hide
bbsi
/* Note:Your choice is C IDE */
#include "stdio.h"
#include "stdlib.h"
#include "math.h"
void main()
{
double x1,y1,x2,y2,x3,y3,a,b,c,s,area;
printf("请输入不在同一条直线上的3个坐标点:\n");
scanf("%f,%f,%f,%f,%f,%f",&x1,&y1,&x2,&y2,&x3,&y3);
a=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
b=sqrt((x1-x3)*(x1-x3)+(y1-y3)*(y1-y3));
c=sqrt((x2-x3)*(x2-x3)+(y2-y3)*(y2-y3));
......................
阅读全部
|
中华英雄
贴于 2013年4月7日 20:51
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>家政服务行业市场营销分析-论文代写,代写毕业论文,代写硕士论文,代写博士论文,代写研究生论文,代写MBA论文</TITLE>
<meta name="keywords" content="论文代写,代写毕业论文,代写硕士论文,代写博士论文,代写研究生论文,代写MBA论文" />
<meta name="description" content="家政服务行业市场营销分析 论文代写,代写毕业论文,代写硕士论文,代写博士论文,代写研究生论文,代写MBA论文" />
<meta http-equiv="Expires" Content="0"/>
<meta http-equiv="Cache-Control" Content="no-cache"/>
<meta http-equiv="Pragma" Content="no-cache"/>
<meta name="MSSmartTagsPreventParsing" content="True" />
<meta http-equiv="MSThemeCompatible" content="Yes" />
......................
阅读全部
|
孙珊珊
贴于 2013年4月7日 15:41
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>家政服务行业市场营销分析-论文代写,代写毕业论文,代写硕士论文,代写博士论文,代写研究生论文,代写MBA论文</TITLE>
<meta name="keywords" content="论文代写,代写毕业论文,代写硕士论文,代写博士论文,代写研究生论文,代写MBA论文" />
<meta name="description" content="家政服务行业市场营销分析 论文代写,代写毕业论文,代写硕士论文,代写博士论文,代写研究生论文,代写MBA论文" />
<meta http-equiv="Expires" Content="0"/>
<meta http-equiv="Cache-Control" Content="no-cache"/>
<meta http-equiv="Pragma" Content="no-cache"/>
<meta name="MSSmartTagsPreventParsing" content="True" />
<meta http-equiv="MSThemeCompatible" content="Yes" />
......................
阅读全部
|
孙珊珊
贴于 2013年4月7日 15:19
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>家政服务行业市场营销分析-论文代写,代写毕业论文,代写硕士论文,代写博士论文,代写研究生论文,代写M
阅读全部
|
孙珊珊
贴于 2013年4月7日 15:18
hide
bbsi
#include <stdio.h>
int main()
{
int a,b,c,d;
float e; /*定义成float型*/
e=(a+b+c+d)/4;
scanf("%d %d %d %d\n",&a,&b,&c,&d);
printf("%f\n",e); /*你输的数据类型是float型*/
return 0;
}
数据开始时你定义的数据是整数,结果输出时却是单精度数据。
阅读全部
|
屠神
贴于 2013年4月6日 23:55
hide
bbsi
# include<stdio.h>
# include<math.h>
main (void)
float x,y;
{scanf("%f%f",&x,&y);
if (x<=1)
y=exp()+1;
else if (x>1&&5<=x)
y=-4*x+5;
else if (x>5&&10<=x)
y=2*x-1;
......................
阅读全部
|
刘仁绿
贴于 2013年4月6日 18:42
hide
bbsi
#include"stdio.h"
void main()
{
int i,ch,a[8];
for(i=0;i<8;i++)
a[i]=0;
while((ch=getchar())!='\n')
if(ch>='0' && ch<='7')
a[ch-'0']++;
for(i=0;i<8;i+=2)
printf("a[%d]=%d\n",i,a[i]);
}
......................
阅读全部
|
独占天下
贴于 2013年4月5日 20:57
hide
bbsi