#11498: What does for( ) mean?


warren (warren(爽啦))

學校 : 臺北市私立延平高級中學
編號 : 60242
來源 : [203.72.178.252]
最後登入時間 :
2018-09-07 17:15:43
d074. 電腦教室 -- 板橋高中教學題 | From: [49.214.193.6] | 發表日期 : 2016-11-04 22:51

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
 
 int n,i,num,max=0;
 cin>>n;
 for(i=1; i<=n; ++i)
 {
  cin>>num;
  if(num>max) max=num;
 }
 cout<<max<<endl;
 
 return 0;
}
 
#11526: Re:What does for( ) mean?


tico88612 (Kagamine Rin)

學校 : 花蓮縣慈濟大學附中
編號 : 55080
來源 : [59.115.11.142]
最後登入時間 :
2024-09-04 19:07:03
d074. 電腦教室 -- 板橋高中教學題 | From: [203.68.24.8] | 發表日期 : 2016-11-14 20:40

#include
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
 
 int n,i,num,max=0;
 cin>>n;
 for(i=1; i<=n; ++i)
 {
  cin>>num;
  if(num>max) max=num;
 }
 cout<<max<<endl;
 
 return 0;
}

You enter number n. Ex.n=5 Next ,you will enter 5 num. choose max of that 5 numbers.

 
ZeroJudge Forum