python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Resizing a BMP image (making it smaller)
It seems I need some help with resizing the BMP image when the zoom factor is less than 1. You can see the most crucial part of my code below. The variable f in the code is the zoom factor. It seems l...
SaintSammy
Votes: 0
Answers: 1
print() go wrong when multiple a string by any number, why does that happen?
when I use print() for string multiplication, it prints out an extra space (" ") at the beginning of each line. Strange. Anyone could explain why?
I was writing a Mario program with python. ...

Sherri
Votes: 0
Answers: 3
Issue with comparing character values inside of a string in C for CS50 subsitution problem
The program specifications are
Design and implement a program, substitution, that encrypts messages using a substitution cipher.
Implement your program in a file called substitution.c in a directory c...
Aortax
Votes: 0
Answers: 1
The program is an exercise that should be a scrabble game, it works fine but when the words are the same but the case differs player 2 always wins
This is the code in its current state.
#include <ctype.h>
#include <cs50.h>
#include <stdio.h>
#include <string.h>
int POINTS[] = {1, 3, 3, 2, 1, 4, 2, 4, 1, 8, 5, 1, 3, 1, 1...
Ion Fiodorov
Votes: 0
Answers: 1