3 Star 2 Fork 0

lo01/introduction_to_programming

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Ex3.3.c 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
JinxinDu 提交于 2022-04-01 09:59 . J.Du
//
// Created by DuJinxin on 2022/4/1.
//
#include <stdio.h>
int maxV() {
int i=0,a=0;
float value;
float maxV; //
printf("Please enter twenty numbers:");
scanf("%f",&value);
maxV=value;
a=1;
for(i=1;i<20;i++){
printf("please enter the %d-th value",i+1);
scanf("%f",&value);
if (maxV<value){
maxV=value;
a=i+1;
}
}
printf("The greatest number entered was :%f\n",maxV);
printf("The greatest number is number #%d",a);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lo01/introduction_to_programming.git
git@gitee.com:lo01/introduction_to_programming.git
lo01
introduction_to_programming
introduction_to_programming
master

搜索帮助