Posts

Showing posts from May, 2023

Beecrowd1009 – Salary with Bonus solution with C

Image
  Beecrowd1009 – Salary with Bonus solution with C problem question #include<stdio.h> int main() { double a,b,c; char name; scanf("%s %lf %lf",&name,&a,&b); c=b*.15+a; printf("TOTAL = R$ %.2lf\n",c); return 0; } Beecrowd 1026 To Carry or not to Carry Solution Programming Quotes BEECROWD 1002 – Area of a Circle solution

URI online judge solution1011 Sphere solution

Image
  URI online judge solution1011 Sphere solution Beecrowd 1011 Sphere Solution in C: A Comprehensive Guide At its core, programming is about solving problems. In this article, we’ll take a deep dive into the solution for the  Beecrowd 1011 Sphere  problem in C. We’ll start with a brief overview of the problem, then walk through the solution step-by-step, and finally offer some tips for improving the efficiency of the code. Overview of the URI/Beecrowd online judge solution1011 Sphere solution in C The Beecrowd 1011 Sphere problem is a classic problem in programming. It involves calculating the volume of a sphere with a given radius. Here’s the problem statement: You have to calculate and print the volume of a sphere given its radius R. The formula to calculate the volume is (4/3) * pi * R^3. Consider (assign) for this problem that π = 3.14159. Now let’s dive into the solution. URI online judge solution1011 Sphere solution in C #include<stdio.h> int main() { double R,pi,v; pi=3.

Object-Oriented Programming

Image
  Object-Oriented Programming What is Object -Oriented Programming(oop) in CPP? OOP stands for Object-Oriented Programming, it’s a programming paradigm that is based on the concept of “objects”, which can contain data and code that manipulates that data. In  C++ , OOP is achieved through the use of classes, objects, inheritance, polymorphism, and encapsulation. Classes define the blueprint for objects, while objects are instances of classes. Inheritance allows classes to inherit properties and behaviors from parent classes. Polymorphism allows objects to take on different forms, and encapsulation is the mechanism that restricts access to an object’s data and methods, promoting data hiding and security. By using these concepts,  OOP  helps to model real-world objects and situations in a more natural and intuitive way, leading to more maintainable and scalable code. 1. Learn C++ Classes: Definition, Examples, and How to Use Them 2. Understanding Inheritance in C++ with Code Examples 3.

BEECROWD Problems Solution

Image
  BEECROWD Problems Solution BEECROWD Problems Solution https://freecodecenter.com/online-judge-solutions/beecrowd-problems-solution/

Codeforces problem solution

Image
  Codeforces All problem solution https://freecodecenter.com/online-judge-solutions/codeforces-problem-solution/