码迷,mamicode.com
首页 > 其他好文 > 详细

实验1

时间:2019-04-08 15:15:05      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:code   mic   src   ret   info   math   oat   stdio.h   image   

#include<stdio.h>

int main()

{

         int a,b,sum;

         a=123;

         b=456;

         sum=a+b;

         printf("sum is %d\n",sum);

         return 0;

}

技术图片

#include<stdio.h>

int main()

{

         char c1,c2;

         c1=97;

         c2=98;

         printf("c1=%c,c2=%c\n",c1,c2);

         printf("c1=%d,c2=%d\n",c1,c2);

         return 0;

}

技术图片

#include<stdio.h>

int main()

{

         char c1,c2;

         c1=197;

         c2=198;

         printf("c1=%c,c2=%c\n",c1,c2);

         printf("c1=%d,c2=%d\n",c1,c2);

         return 0;

}

技术图片

#include<stdio.h>

#include<math.h>

main()

{

         float x,y,z;

         int a;

         scanf("%f %f",&x,&y);

         //y=fabs(y);

         z=(x+1)/fabs(y);

         a=z;

         printf("%d\n",a);

         printf("%15.6f\n",z);

         printf("%e\n",z);

         return 0;

}

技术图片

实验1

标签:code   mic   src   ret   info   math   oat   stdio.h   image   

原文地址:https://www.cnblogs.com/P201821440029/p/10670553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!