我正在创建一个伪代码来确定用户输入的正数列表中的最大数字

时间:2014-10-27 03:32:44

标签: logic

我正在创建一个伪代码来确定用户输入的正数列表中的最大数字。此外,用户应通过输入0来表明他/她已完成输入数字。谢谢

1 个答案:

答案 0 :(得分:0)

max <-- 0     // assigning max to 0      
n <-- read()  // read user input

while n!=0 
{
  if(n>max)     // check if n is greater than max
     max <-- n  // if true update max

  n <-- read()  // read next input
}

print(max)     // print max