猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
输入三个字符型数据,将其转换成相应的整数后,求三者的平均值,并输出。
输入三个字符型数据,将其转换成相应的整数后,求三者的平均值,并输出。
药罐子0
浏览 4355
回答 8
8回答
慕沐4449596
#include<stdio.h>#include<stdlib.h>int main(){ char word1[100],word2[100],word3[100]; gets(word1); gets(word2); gets(word3); int zhi1,zhi2,zhi3; zhi1=atoi(word1); zhi2=atoi(word2); zhi3=atoi(word3); printf("%d\n",(zhi1+zhi2+zhi3)/3); return 0;}
0
0
0
月薪过万只是梦
#include <stdio.h> #include <windows.h> int main(int argc, char *argv[]) { char a,b,c; int avg; scanf("%c,%c,%c",&a,&b,&c); getchar(); avg=(int)((a+b+c)/3); printf("三者平均值为:%d\n",avg); return 0; }
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
C
typedef入门问题
1 回答
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续