Windows 10: Adult ads when playiing Sudoku

Discus and support Adult ads when playiing Sudoku in Windows 10 Gaming to solve the problem; How to stop +18 ads when playing Microsoft Sudoku I little bit on the nose s there are others that use this computer... Discussion in 'Windows 10 Gaming' started by Ron Hope Island, Dec 10, 2018.

  1. Adult ads when playiing Sudoku


    How to stop +18 ads when playing Microsoft Sudoku


    I little bit on the nose s there are others that use this computer

    :)
     
    Ron Hope Island, Dec 10, 2018
    #1

  2. adult game pop up ads appearing in microsoft games, especially sudoku and jigsaw

    Hi,

    In-game inquiries like turning off game advertisements are handled
    by our Xbox Support Team. We've made a research on how to stop Windows 10 displaying targeted ads.
    You may refer to the steps below:

    • Open Settings.
    • Click on Privacy.
    • Click on General.
    • Under Chang privacy options, toggle switch to turn off Let apps use my advertising ID for experiences across apps.

    If the same instance occurs, we recommend posting your concern to the Microsoft
    Jigsaw and Sudoku in-game community. Here are the links:

    If you need further assistance, feel fee to post.
     
    Wilfred Mac, Dec 10, 2018
    #2
  3. GSquadron Win User
    Java sudoku

    A friend of mine gave me a java sudoku ready, i just modified the main part but looks like it
    doesn't show up anything (used the code in neatbeans and in eclipse too):
    Code: package javaapplication2; import java.util.*; public class Main { public static void main(String args[]){} Random generator = new Random(); int[] serie = new int[9]; int[][] sudoku = new int[9][9]; int[][] select = new int[9][9]; int livello; public Main(int livello) { this.livello = livello; for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { select[j] = -1; } } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { sudoku[j] = -1; } } for (int i=0; i<9; i++) { serie = -1; } } private void genArray() { int numCas = Math.abs(generator.nextInt(9))+1; for (int i=0; i<9;i++) { if (i==0) { serie = numCas; } else { while (serie[0] == numCas || serie[1] == numCas || serie[2] == numCas || serie[3] == numCas || serie[3] == numCas || serie[4] == numCas || serie[5] == numCas || serie[6] == numCas || serie[7] == numCas || serie[8] == numCas) { numCas = Math.abs(generator.nextInt(9))+1; } serie = numCas; } } } private void generateSudoku() { for (int i=0; i<9; i++) { if (i==0) { for (int k=0; k<9; k++) { sudoku[k] = serie[k]; } } else if (i==2) { for (int k=0; k<6; k++) { sudoku[k+3] = serie[k]; } for (int k=0; k<3; k++) { sudoku[k] = serie[k+6]; } } else if (i==1) { for (int k=0; k<3; k++) { sudoku[k+6] = serie[k]; } for (int k=0; k<6; k++) { sudoku[k] = serie[k+3]; } } else if (i==3) { for (int k=0; k<8; k++) { sudoku[k+1] = serie[k]; } for (int k=0; k<1; k++) { sudoku[k] = serie[k+8]; } } else if (i==5) { for (int k=0; k<5; k++) { sudoku[k+4] = serie[k]; } for (int k=0; k<4; k++) { sudoku[k] = serie[k+5]; } } else if (i==4) { for (int k=0; k<2; k++) { sudoku[k+7] = serie[k]; } for (int k=0; k<7; k++) { sudoku[k] = serie[k+2]; } } else if (i==6) { for (int k=0; k<7; k++) { sudoku[k+2] = serie[k]; } for (int k=0; k<2; k++) { sudoku[k] = serie[k+7]; } } else if (i==8) { for (int k=0; k<4; k++) { sudoku[k+5] = serie[k]; } for (int k=0; k<5; k++) { sudoku[k] = serie[k+4]; } } else if (i==7) { for (int k=0; k<1; k++) { sudoku[i][k+8] = serie[k]; } for (int k=0; k<8; k++) { sudoku[i][k] = serie[k+1]; } } } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } arrange(); for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } } private void arrange() { int cas = Math.abs(generator.nextInt(3)); for (int i=0; i<9; i++) { if (cas == 0) { if (i == 0) { swap0(i); } else if (i == 3) { swap0(i); } else if (i == 6) { swap0(i); } } else if (cas == 1) { if (i == 0) { swap1(i); } else if (i == 3) { swap1(i); } else if (i == 6) { swap1(i); } } else if (cas == 2) { if (i == 0) { swap2(i); } else if (i == 3) { swap2(i); } else if (i == 6) { swap2(i); } } cas = Math.abs(generator.nextInt(3)); } } private void swap0(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+1][j]; sudoku[pivot+1][j] = aux; aux = sudoku[pivot+1][j]; sudoku[pivot+1][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } private void swap1(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; aux = sudoku[pivot+1][j]; sudoku[pivot+1][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+1]; sudoku[j][pivot+1] = aux; aux = sudoku[j][pivot+1]; sudoku[j][pivot+1] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } private void swap2(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; aux = sudoku[j][pivot+1]; sudoku[j][pivot+1] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } public void select() { int numX; int numY; genArray(); generateSudoku(); if (livello == 0) { for (int i=0; i<30; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } else if (livello == 1) { for (int i=0; i<20; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } else if (livello == 2) { for (int i=0; i<10; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } try { notifyAll(); } catch (Exception e) { } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } } }[/quote] Where the problem is here? It compiles perfectly! Nothing shows on the screen *Confused Adult ads when playiing Sudoku :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Dec 10, 2018
    #3
  4. Dey5252 Win User

    Adult ads when playiing Sudoku

    How to move the ads on Sudoku?

    I understand the reasons for the ads in all the games, but to let them hover ove the game is cheezy

    I cannot play the Sudoku daily challenge because of the ads hovering over.

    Is there a way to move the ads away from the game?
     
    Dey5252, Dec 10, 2018
    #4
Thema:

Adult ads when playiing Sudoku

Loading...
  1. Adult ads when playiing Sudoku - Similar Threads - Adult ads playiing

  2. Need adult permission when I'm an adult myself

    in Windows 10 Gaming
    Need adult permission when I'm an adult myself: Whenever I try to download something or buy anything it asks for parents permission. I left family group so how it is still asking for it?I'm 19 years young and I have my own life so how can I get rid of the adult thing?...
  3. Need adult permission when I'm an adult myself

    in Windows 10 Software and Apps
    Need adult permission when I'm an adult myself: Whenever I try to download something or buy anything it asks for parents permission. I left family group so how it is still asking for it?I'm 19 years young and I have my own life so how can I get rid of the adult thing?...
  4. Need adult permission when I'm an adult myself

    in User Accounts and Family Safety
    Need adult permission when I'm an adult myself: Whenever I try to download something or buy anything it asks for parents permission. I left family group so how it is still asking for it?I'm 19 years young and I have my own life so how can I get rid of the adult thing?...
  5. Permission from adult requested when i am the adult?

    in User Accounts and Family Safety
    Permission from adult requested when i am the adult?: HelloI am the Administrator and Organizer for my laptop and microsoft account yet yet I am trying to complete Uni work and it keeps coming up saying I need an adults permission to view a certain page? I have checked my date of birth and it is correct, I have removed myself...
  6. When will Microsoft fix Sudoku?

    in Windows 10 Gaming
    When will Microsoft fix Sudoku?: Sudoku has not recorded a game since about Nov 7, 2020. It doesn't matter how many times I play the game, it isn't recorded as played. https://answers.microsoft.com/en-us/windows/forum/all/when-will-microsoft-fix-sudoku/74f6b3a7-a4fd-47c9-ae29-53a49e5f6730
  7. MS Games Sudoku Paid for now getting ads

    in Microsoft Windows 10 Store
    MS Games Sudoku Paid for now getting ads: I purchased the Sudoku app from the MS store. Now I'm getting ads every time I want to play the game I get ads. https://answers.microsoft.com/en-us/windows/forum/all/ms-games-sudoku-paid-for-now-getting-ads/0cf4ac90-6c40-4634-93ff-5a6066ea7a3b
  8. Sudoku has repeating ads

    in Windows 10 BSOD Crashes and Debugging
    Sudoku has repeating ads: Sometimes while I'm playing Sudoku the ads keep repeating and there isn't a button to turn them off. I have to exit the ap and on re-entering the game I'm forced to watch yet another ad before I can play my game! It's annoying and unfair. I understand the need for ads but I...
  9. Sudoku Ad freezing games AGAIN!!!

    in Windows 10 Software and Apps
    Sudoku Ad freezing games AGAIN!!!: Every so often, Sudoku freezes on me with nothing responding (but its clock continuing to count) either with a blank pane where an ad would normally be or (occasionally) with a specific ad in that location. It is fairly obvious that it is failing to deal properly with an ad...
  10. Ads during Sudoku game?

    in Windows 10 Installation and Upgrade
    Ads during Sudoku game?: How do I stop ads during Sudoku game? I had the same problem in Mahjong and paid for premium to stop the ads. Can I do the same in Sudoku? https://answers.microsoft.com/en-us/windows/forum/all/ads-during-sudoku-game/da143581-500b-4053-9ded-1141073f959f

Users found this page by searching for:

  1. solitaire displaying adult ads