黑马程序员技术交流社区

标题: c语言习题5 [打印本页]

作者: brenthe    时间: 2016-5-16 19:55
标题: c语言习题5

7、用户从键盘上输入两个整数,输出他们的余数

#include <stdio.h>

int main(int argc, const char * argv[]) {
   
    //定义两个变量储存数
    int num1,num2;
   
    //打印一句话引导用户输入
    printf("please enter two numbers:\n");
   
    //将用户输入的值存入变量中
    scanf("%d%d",&num1,&num2);
   
   
    //将用户输入的数的余数打印出来
    printf("the remainder which use %d to divide %d is %d.\n",num1,num2,num1%num2);
   
   
    return 0;
}


9. 用户输入矩形的长和宽,求出矩形的面积和周长,并将结果显示在屏幕上.

面积: 长*宽       周长  (长+宽)*2

#include <stdio.h>

int main(int argc, const char * argv[]) {
   
    //定义两个变量存矩形的长和宽
    double length, wide;
   
    //定义两个变量存矩形的面积和周长
    double area, perimeter;
   
    //输出一句话,提示用户输入矩形的长和宽
    printf("please enter the length and wide of a orthogon.\n");
   
    //将用户输入的数据存入变量
    scanf("%lf%lf",&length,&wide);
   
    //计算面积和周长
    area = length * wide;
    perimeter = 2* (length + wide);
   
    //输出计算结果
    printf("the area of the orthogon is %.2lf, the perimeter of the orthogon is %.2lf.\n",area,perimeter);
   
   
    return 0;
}






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2