Hello Programmers, The solution for codechef Chef and Remissness problem is given below. Problem Link:- https://www.codechef.com/problems/REMISS /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef Chef and Remissness problem * Problem Link:- https://www.codechef.com/problems/REMISS * Website:- http://www.programmingvidya.com */ #include<iostream> using namespace std; int main() { // * Initializing variables int numberOfTestCases, … Continue reading Solution for Codechef REMISS | Chef and Remissness
Tag: Codechef
Solution for Codechef MUFFINS3 | Packaging Cupcakes
Hello Programmers, The solution for codechef Packaging Cupcakes problem is given below. Problem Link:- https://www.codechef.com/problems/MUFFINS3 /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef Packaging Cupcakes problem * Problem Link:- https://www.codechef.com/problems/MUFFINS3 * Website:- http://www.programmingvidya.com */ #include<iostream> using namespace std; int main() { // * Initializing variables int numberOfTestCases, n; // … Continue reading Solution for Codechef MUFFINS3 | Packaging Cupcakes
Solution for Codechef FLOW004 | First and Last Digit
Hello Programmers, The solution for codechef First and Last Digit problem is given below. Problem Link:- https://www.codechef.com/problems/FLOW004 /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef First and Last Digit problem * Problem Link:- https://www.codechef.com/problems/FLOW004 * Website:- http://www.programmingvidya.com */ #include<iostream> #include<math.h> using namespace std; int main() { // * Initializing … Continue reading Solution for Codechef FLOW004 | First and Last Digit
Solution for Codechef FLOW006 | Sum of Digits
Hello Programmers, The solution for codechef Sum of Digits problem is given below. Problem Link:- https://www.codechef.com/problems/FLOW006 /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef Sum of Digits problem * Problem Link:- https://www.codechef.com/problems/FLOW006 * Website:- http://www.programmingvidya.com */ #include<iostream> using namespace std; int main() { // * Initializing variables int numberOfTestCases, … Continue reading Solution for Codechef FLOW006 | Sum of Digits
Solution for Codechef START01 | Number Mirror
Hello Programmers, The solution for codechef Number Mirror problem is given below. Problem Link:- https://www.codechef.com/problems/START01 /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef Number Mirror problem * Problem Link:- https://www.codechef.com/problems/START01 * Website:- http://www.programmingvidya.com */ #include<iostream> using namespace std; int main() { // * Initializing variables int n; // * … Continue reading Solution for Codechef START01 | Number Mirror
Solution for Codechef FLOW001 | Add Two Numbers
Hello Programmers, The solution for codechef Add Two Numbers problem is given below. Problem Link:- https://www.codechef.com/problems/FLOW001/ /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef Add Two Numbers problem * Problem Link:- https://www.codechef.com/problems/FLOW001/ * Website:- http://www.programmingvidya.com */ #include<iostream> using namespace std; int main() { // * Initializing variables int t, … Continue reading Solution for Codechef FLOW001 | Add Two Numbers
Solution for Codechef INTEST | Enormous Input Test
Hello Programmers, The solution for codechef Enormous Input Test problem is given below. Problem Link:- https://www.codechef.com/problems/INTEST /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef Enormous Input Test problem * Problem Link:- https://www.codechef.com/problems/INTEST * Website:- http://www.programmingvidya.com */ #include<iostream> #include<stdio.h> using namespace std; int main() { // * Initializing variables int … Continue reading Solution for Codechef INTEST | Enormous Input Test
Solution for Codechef HS08TEST | ATM
Hello Programmers, The solution for codechef ATM problem is given below. Problem Link:- https://www.codechef.com/problems/HS08TEST /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef ATM problem * Problem Link:- https://www.codechef.com/problems/HS08TEST * Website:- http://www.programmingvidya.com */ #include<iostream> #include<stdio.h> using namespace std; int main() { // * Initializing variables float balance; int amount; // … Continue reading Solution for Codechef HS08TEST | ATM
Solution for Codechef FLOW002 | Find Remainder
Hello Programmers, The solution for codechef Find Remainder problem is given below. Problem Link:- https://www.codechef.com/problems/FLOW002 /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef FLOW002 problem * Problem Link:- https://www.codechef.com/problems/FLOW002 * Website:- http://www.programmingvidya.com */ #include<iostream> using namespace std; int main() { // * Initializing variables int t, a, b; // … Continue reading Solution for Codechef FLOW002 | Find Remainder
Solution for Codechef POUR1 | Pouring water
Hello Programmers, The solution for codechef Pouring water problem is given below. Problem Link:- https://www.codechef.com/problems/POUR1 /* * Author:- Rahul Malhotra * Source:- Programming Vidya * Description:- Solution for Codechef POUR1 Problem * Problem Link:- https://www.codechef.com/problems/POUR1 * Website:- http://www.programmingvidya.com */ #include <iostream> #include <stdio.h> using namespace std; /* * This function is used to return the … Continue reading Solution for Codechef POUR1 | Pouring water