Chapter 4.1 Basic Programming Codes PDF

Summary

This document provides a basic overview of programming codes, demonstrating the fundamental elements of creating and executing a program.

Full Transcript

4.0 BASIC PROGRAMMING CODES 4.1 Demonstrate the understanding of basic programming codes 4.1.1 Elements of the programming language ⚫ Here is our first program: // finding area for circle #include int main () { float radius, a...

4.0 BASIC PROGRAMMING CODES 4.1 Demonstrate the understanding of basic programming codes 4.1.1 Elements of the programming language ⚫ Here is our first program: // finding area for circle #include int main () { float radius, area; const float pi=3.14; coutradius; area= pi * radius * radius; cout