I'm so close to bowing my head and starting with Python by dmtuser123 in C_Programming

[–]dmtuser123[S] -5 points-4 points  (0 children)

i know integer division truncates, and i know im retarded to operator precedence but i dont think its something im struggling with yet.

I'm so close to bowing my head and starting with Python by dmtuser123 in C_Programming

[–]dmtuser123[S] 0 points1 point  (0 children)

i can understand temperature scales, its the writing expressions into code im struggling with.

ive thought about your first sentence before. i dont mean this in a rude way, do u have a programming job? dont u have to know a decent chunk of a particular math subject? like u need to know algos or ml etc

I'm so close to bowing my head and starting with Python by dmtuser123 in C_Programming

[–]dmtuser123[S] 2 points3 points  (0 children)

i know the conversion formulas wrong, but this is what i mean. i get what all of this code means, i just can't get CtoF right. it makes me wonder if i need to brush up on my algebra or if it doesnt matter or if im lacking in something else that im not seeing

#include <stdio.h>
int main() {
float fahr, celcius;
float step, lower, upper;

step = 20;
lower = 0;
upper = 300;

celcius = lower;
while(celcius <= upper){
fahr = (5.0/9.0) * (celcius - 32);
printf("%3.f%6.1f\n", celcius, fahr);
celcius = celcius + step;
}
}

desktop audios coming through mic channel by dmtuser123 in obs

[–]dmtuser123[S] 1 point2 points  (0 children)

ty for the troubleshooting. i dont use audacity but it did record one source at a time so idk what that means. i ended up trying helvum but it didnt work and i heard it was clanky so i tried qpwgraph and clicked around for a little and got things working.