For Multi Condition

Untuk For Multi Kondisi (kondisi1 & kondisi2), maka diperlukan operator LOGIKA && untuk relasi AND, dan operator LOGIKA || untuk relasi OR.
Untuk materi dasar for, dapat dilihat di sini!

Langsung saja pada contoh listing programnya.

# include <iostream.h>
# include <conio.h>

main()
{

int bil;
char ket;
clrscr();

for((bil=1)&&(ket='D');(bil<=4)&&(ket>='A');(bil++)&&(ket--))
{
cout <<bil <<" | " <<ket;
cout <<"\n";
}

getch();
}

Posted in . Bookmark the permalink. RSS feed for this post.

Leave a Reply

Search

Support by Blogger ITN | Converted by LiteThemes.com