Saved Bookmarks
| 1. |
Write a pseudocode and flowchrt to print even no till 100 |
|
Answer» psuedocode : - Print i*2 End Explanation:- #include using namespace std; int main(){ for(int i = 1 ; i <= 100 ; ++i){ if (i%2==0){ COUT << i << " "; }} return 0; } |
|