gpt4 book ai didi

c - 如何编写一个接受整数输入并打印最大数字的输入的C程序?

转载 作者:行者123 更新时间:2023-11-30 17:29:18 25 4
gpt4 key购买 nike

我将如何编写一个 C 程序来接收用户的输入(例如 -232 或 14 之类的整数)并打印用户输入的最大值的整数?

到目前为止我所知道的是(我的伪代码):

int main(void)
{

int variable;

printf("Enter an integer to check if that is the greatest integer you inputted.")

if %d > variable;
printf("The greatest value you entered is %d")
elif
printf("The greatest value you entered is 'variable'")

scanf("%d", &variable) /Will this command help? IDK
}

我不需要实际的代码,而是需要执行此操作的步骤/命令。抱歉,让我觉得好像我在让别人为我做我的工作。我刚开始学C,对它不是很熟悉:(

谢谢。

PS 该程序应该存储并记录输入的最大整数。

最佳答案

你需要两件事,一是你正在寻找的东西,一是你的最终情况(你什么时候停止寻找)

你正在寻找最大的数字,但是你什么时候停止寻找? 10 个值之后?文件结束后?新行之后?

所以在伪代码中它就像

int i = 0;
int variable = 0; //Good practice to initialize your variables.
while(When will you stop? i < 10 eg 10 inputs?){
if(your input is > variable){
variable = input;
}
i++; //or whatever your end case is. Have to get closer to the end case.
return variable;

关于c - 如何编写一个接受整数输入并打印最大数字的输入的C程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25695658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com