Created
January 19, 2020 07:46
-
-
Save yanwardos/46b33d88ee72e16fc5d511e3e59875fd to your computer and use it in GitHub Desktop.
Program sederhana perulangan for
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Name: Perulangan for | |
Copyright: | |
Author: Yanwardo Sitanggang | |
Date: 19/01/20 14.43 | |
Description: Program sederhana perulangan | |
*/ | |
#include<iostream> | |
using namespace std; | |
int main(){ | |
for(int i=0; i<5; i++){ | |
cout<<i; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment