2016.03.03第一周.c

//
//  main.c
//  2016.03.03.c
//
//  Created by 李亚泽 on 16/3/3.
//  Copyright © 2016年 李亚泽. All rights reserved.
//

/*#include <stdio.h>

int main(int argc, const char * argv[]) {
    printf ("hello world/n");
    return 0;
    
    }*/
/*#include <stdio.h>
int main(void)
{
    int height,length,width,volume,weight;

    height = 8;
    length = 12;
    width = 10;
    volume = height*length*width;
    weight = (volume + 165)/166;
    
    printf("Dimensions:%dx%dx%d\n",length,width,height);
    printf("Volume(cubic inches):%d\n",volume);
    printf("Dimensional weight (pounds):%d\n",weight);
    
    return 0;
}*/

/*#include <stdio.h>
int main(void)
{
    int height,length,width,volume,weight;
    printf("Enter height of box:");
    scanf("%d",&height);
    printf("Enter length of box:");
    scanf("%d",&length);
    printf("Enter width of box:");
    scanf("%d",&width);
    volume = height*length*width;
    weight = (volume + 165)/166;
    
    printf("Volume (cubic inches):%d\n",volume);
    printf("Dimensional weight (pounds):%d\n",weight);
    return 0;
}*/
/*#include <stdio.h>
int main(void)
{
    float b1 = 0,b2 = 0;
    printf("Enter an amount:");
    scanf("%f",&b1);
    b2 = b1*(1 + 0.05);
    printf("With tax added:$%.2f\n",b2);
    return 0;
}*/


你可能感兴趣的:(2016.03.03第一周.c)