I wanted to print in C my player turn and the number [# PL<depending on the player> (turn of the player)] I wanted to start with # PL1 (1), in the next move # PL2 (1), after # PL1 (2) and then returning to # PL2 (2) so on... How can I make it?
take an integer value say turn and assign an initial value to it.
turn = 1;
Now increment the turn after both the players had their turn.
turn++;
To print the turn in the above format, use
printf("# PL%d (%d)", i, turn);
Here i is the index of the player which has the turn.
You would have to use 2 loops, like:
turn = 1;
while(true) {
for(int i = 1; i <= 2; ++i) {
printf("# PL%d (%d)", i, turn);
}
turn++;
if(any player wins or turns are over) {
break;
}
}
Note: if you are using the above while loop, do use the break statement otherwise it will end up in an infinite loop.
Hope this helps.
Please rate the answer if you like it.
Do leave a comment.Any suggestion/query is much appreciated.
I wanted to print in C my player turn and the number [# PL<depending on the...
How to I change this code to print the highest value(s) in the
array? The wanted output (you just need to make it print the
winner, ignore what comes before) is included below:
--------------------------------------------------------------------------------------------
public static void playGame(int players, int cards) {
if (players * cards > 52) {
System.out.println("Not enough cards for that many
players.");
return;
}
boolean[] deck = new boolean[52];
int[] playerScore = new int[players];
for (int i = 0; i < players; i++) {
System.out.println("Player "...
This is in python. I need to print out a specific message depending on the number that's input. for example, if the user inputs 1, program should print out "hello". if the user inputs 2, program should print out "hi". But also the program should keep asking for a number to be input after a valid number is input. For example, user inputs 1, program prints out "hello" and then asks the user to input another value. but also the...
I need help with my programming assignment. The language used should be java and the algorithm should use search trees so that you play against the computer and he chooses the best move. The tree should have all possibilities on the leaves and you could use recursion to so that it populates itself. The game can be a 3*3 board (no need the make it n*n). Please put comments so that I can understand it. Thanks The game of ‘Walls’...
A subtraction game Subtraction games are two-player games in which there is a pile of objects, say coins. There are two players, Alice and Bob, who alternate turns subtracting 4.9. A SUBTRACTION GAME 19 from the pile some number of coins belonging to a set S (the subtraction set). Alice goes first. The first player who is unable to make a legal move loses. For example, suppose the initial pile contains 5 coins, and each player can, on his turn,...
I have already finished most of this assignment. I just need some help with the canMove and main methods; pseudocode is also acceptable. Also, the programming language is java. Crickets and Grasshoppers is a simple two player game played on a strip of n spaces. Each space can be empty or have a piece. The first player plays as the cricket pieces and the other plays as grasshoppers and the turns alternate. We’ll represent crickets as C and grasshoppers as...
I try to define a PYTHON program that can print the largest
factor of the number except for the number itself. Ex: enter n as
15, the program will print: 5. The factor of 15 is 15, 5, 3, 1, but
15 will not be counted in this case. If enter a prime number, it
will print 1.
I am not sure what I did wrong here, please point out my mistake
and advise how should I improve.
def largest_factor(n)...
This is my code for my game called Reversi, I need to you to make the Tester program that will run and complete the game. Below is my code, please add comments and Javadoc. Thank you. public class Cell { // Displays 'B' for the black disk player. public static final char BLACK = 'B'; // Displays 'W' for the white disk player. public static final char WHITE = 'W'; // Displays '*' for the possible moves available. public static...
Python
Complete the player_turn() function that completes a single turn of the game Tic-Tac-Toe (also called Noughts and Crosses). The function takes 3 parameters: 1. The first parameter is called board. It is a list of length 3, where each entry is a string with 3 characters representing a row on a Tic-Tac-Toe board. Each character in a row represents a slot on the Tic-Tac-Toe board with the "#" character indicating an empty slot. An empty board looks like this:...
In C++. Write a class named FBoard for playing a game, where player x is trying to get her piece to row 7 and player o is trying to make it so player x doesn't have any legal moves. It should have: An 8x8 array of char for tracking the positions of the pieces. A data member called gameState that holds one of the following values: X_WON, O_WON, or UNFINISHED - use an enum type for this, not string (the...
can
someone solve this program using c++ (visual studio)?
You have a grid of 4x4 cells which is filled by numbers from 1 to 8. Each number appears twice in the grid. The purpose of the Memory Game is to find the matching numbers. To start the game, Player 1 chooses two cells to uncover the numbers behind them. If the numbers match, player 1 gets to go on and uncover two more numbers. If the numbers don't match, player...