Monday, March 25, 2013

Minggu ke-4 ALPRO (Kasus 4.2)



  • Cetaklah bilangan ganjil dari 0 sampai 10
Flowchat
Translasi di C++: 
#include <iostream>
#include <string>
using namespace std;
int main()
{
int i;
i =1;
while (i>=10)
{
if (i % 2==0)
{
}
else
{
cout << i<< ” = ganjil” << endl;      }
i =i+1;
}
system(“PAUSE”);
return 0;
}

Share this

0 Comment to "Minggu ke-4 ALPRO (Kasus 4.2)"

Post a Comment