PERULANGAN DENGAN FOR
Diajukan untuk memnuhi tugas pertemuan ke-4
SCRIPTNYA :
#include<iostream.h>
int main()
{
int w,a;
cout<<"\t| NAMA : WAHYU NUGROHO INDRAWINATA |"<<endl;
cout<<"\t| NIM : TI-111036 |"<<endl;
cout<<"\t| M.K : Pemograman C++ (Tugas) |"<<endl;
cout<<"\t| Semester : III |"<<endl;
cout<<"\t| Program perulangan dengan FOR |"<<endl<<endl<<endl;
cout<<"MASUKKAN BANYAK ANGKA YANG ANDA INGINKAN ";
cin>>w;
for(a=1;a<=w;a++)
{if(a%2==0)
{cout<<" "<<a*-1;}
else cout<<" "<<a;
}
}
Hasil Outputnya :
int main()
{
int w,a;
cout<<"\t| NAMA : WAHYU NUGROHO INDRAWINATA |"<<endl;
cout<<"\t| NIM : TI-111036 |"<<endl;
cout<<"\t| M.K : Pemograman C++ (Tugas) |"<<endl;
cout<<"\t| Semester : III |"<<endl;
cout<<"\t| Program perulangan dengan FOR |"<<endl<<endl<<endl;
cout<<"MASUKKAN BANYAK ANGKA YANG ANDA INGINKAN ";
cin>>w;
for(a=1;a<=w;a++)
{if(a%2==0)
{cout<<" "<<a*-1;}
else cout<<" "<<a;
}
}
Hasil Outputnya :
0 komentar:
Posting Komentar