Skip to content

Instantly share code, notes, and snippets.

@jlggross
Created October 25, 2013 16:29
Show Gist options
  • Save jlggross/7157544 to your computer and use it in GitHub Desktop.
Save jlggross/7157544 to your computer and use it in GitHub Desktop.
Realiza o sorteio de 1 a 5
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main () {
int iSecret;
srand (time(NULL));
iSecret = rand() % 5 + 1;
printf("O sorteado é: %d\n", iSecret);
return 0;
}
@weberhen
Copy link

Hello, i read your blog from time to time and i own a similar one and i was just wondering if you get a lot of spam comments? If so how do you stop it, any plugin or anything you can recommend? I get so much lately it’s driving me crazy so any support is very much appreciated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment