Commit ec86c5fe by makuks

Upload New File

parent c383abfe
Showing with 21 additions and 0 deletions
#include <stdio.h>
int main(){
int i=1;
for(i=1; i<11; i+=2){
printf("%d ", i);
}
printf("\n");
for(i=2; i<11; i+=2){
printf("%d ", i);
}
printf("\n");
for(i=10; i>0; i--){
printf("%d ", i);
}
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