
Data compression with lissajous curve - Physics Forums
2018年5月18日 · I was hoping this c++ file could be adapted to use as data compression or encryption
Why am I getting an extra blank line at the end of my output?
2018年10月5日 · Note: this is not a homework question! The problem that this program should solve is turn a input like this:(no space and the end of the input string) james shawn charles nicholas into something like this: James Shawn Charles Nicholas But I keep getting an excess line at the bottom of all...
How do you read two files in the same program in C++? - Physics …
2019年3月28日 · My matrix text files can vary from 1x1 to 10x10 (Another file will be given when the code gets tested but it's all square matrices) I'm stuck here. #include #include #include using namespace std; int main() { const int MAXI = 10; int x, y, z, xcoordinates[MAXI]...
Why is my virtual judge solution giving me wrong answers?
2017年11月11日 · Input Input starts with an integer T (≤ 100), denoting the number of test cases. Each case contains seven integers, a, b, c, d, e, f and n.
Resolution of Peeble's ODE equation - Physics Forums
2025年3月17日 · Hello everyone, I am trying to code the recombination history of the universe in C. More precisely I have difficulties to solve the peebles ode equation. In fact when I am close to the saha limit, I begin the resolution but the rhs of the ode seems to …
Creating a simple password program in C++ - Physics Forums
2017年5月19日 · So I'm trying to teach myself C++ programming and I'm having trouble writing a password program. Essentially I want to program to ask the user to input a password, and then compare that input with the correct password. If the user input matches the password I want the program to output a message...