Commit 138fac8e by matjul

Upload New File

parent 6af74e16
Showing with 13 additions and 0 deletions
#include <stdio.h>
int main () {
int i = 0;
int x = 2;
while(i <10) {
x += i;
printf("%d\n", x);
i +=1;
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment