首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴锦芳的代码贴C语言
#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
#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
1
锦芳