Program Development Notes With Code
Program Development Notes With Code
- c) decision
2. Writing the program task in simple sequence and in simple English is known as:
- a) algorithm
- b) sorting
- a) flowchart
- b) pseudocode
---
3) Flowchart Symbols
---
#include<iostream>
int main() {
int A, B, C;
else
return 0;
}
---
#include<iostream>
int main() {
int N;
cin >> N;
if (N % 2 == 0)
else
return 0;
---
int main() {
int sum = 0;
if (i % 2 != 0) {
sum += i;
cout << "The sum of odd numbers between 1 and 100 is: " << sum;
return 0;