Answer the question
In order to leave comments, you need to log in
The video card on the laptop shows the same amount of FPS on ultra and minimum settings, how to fix it?
Need some advice, I have a Lenovo laptop with a 130W RTX 3060 graphics card. When I run games, the video card shows about the same amount of FPS with different graphics settings, I set the maximum graphics in CS: GO to show 150-250 FPS at 80w and 60% load on the video card, and when I set the minimum (I reduce the resolution from FULL HD to 800-600) is also about 200-250 frames, but the load on the video card is 40w and 35%. In GTA5 ONLINE the same story, I put everything on ultra and anti-aliasing MXAA 8X load 85% 125W and 80 frames, I set high - 60% 90W and the same 80 frames, the processor is loaded by 35-40%. The video card is in maximum performance mode and the laptop itself too.
Answer the question
In order to leave comments, you need to log in
Where is the problem?
80 fps in GTA and 250 in CS is a good result.
There is no need for long arithmetic here, the usual division into a column.
void divide(int num, int div) {
int quot, rest, pos;
int positions[1000];
char out[1024];
printf("%d / %d = ", num, div);
for (pos = 0; pos < 1000; pos++)
positions[pos] = -1;
quot = num / div;
rest = num % div;
pos = sprintf(out, "%d", quot);
if (rest)
out[pos++] = '.';
while (positions[rest] == -1 && rest) {
positions[rest] = pos;
num = rest * 10;
quot = num / div;
rest = num % div;
out[pos++] = quot+'0';
}
out[pos] = 0;
if (rest == 0)
printf("%s\n", out);
else
printf("%.*s(%s)\n", positions[rest], out, out+positions[rest]);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question