NIM : TI111025
Membuat Program Loop For
Soal :
Gunakan loop for untuk membuat program sebagai berikut :
input : n
output : 1 -2 3 -4 5 -6 7 -8 …n
Jawab :
#include "iostream.h"Output :
int main()
{
int i, x;
cout<<"\t Loop For"<<'\n';
cout<<"\t ILFAN RIFA'I"<<'\n';
cout<<"\t TI111025"<<'\n';
cout<<"\t ****www.ilfan-rifai.blogspot.com****"<<'\n';
cout<<" ===================================================================="<<'\n'<<'\n';
cout<<"\tMasukkan Angka : ";
cin>>i;
for(x=1;x<=i;x++)
{if(x%2==0)
{cout<<" "<<x*-1;}
else cout<<" "<<x;
}
}
0 comments: on "Membuat Program Loop For"
Post a Comment