Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- *
- * A cada novo clique, é adicionado um número primo na tela
- *
- * Por Bruno da Silva
- */
- #include <windows.h>
- #include <ctime>
- #include <stdio.h>
- #include <iostream>
- int main()
- {
- int primo = 0;
- while(true)
- {
- Sleep(100);
- if(GetAsyncKeyState(VK_LBUTTON))
- {
- for(int i = primo + 1; i < 100; i++) {
- int eprimo = 1;
- for(int j = 2; j <= sqrt(i); j++) {
- if(!(i % j)) {
- eprimo = 0;
- break;
- }
- }
- if(eprimo) {
- primo = i;
- break;
- }
- }
- printf("oi %d \n", primo);
- }
- }
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement