DEV Community

Matt
Matt

Posted on

Pseudocode Online Editor

My new pseudocode editor online has recently launched after around 3 to 4 weeks of development.

The main goal is to help programmers write pseudocode online faster and better than ever. There is also a code saving feature that allows users to save their code to their account, and login wherever and whenever and pick up where they left off.

It is 100% free and there are no confusing pricing plans, so it is very easy to get started! There are also guides on pseudocode, lile this guide on variables in pseudocode

Hope you guys like it as much as I do!

Top comments (1)

Collapse
 
rklarbi profile image
ben

Design a program that uses nested loops to collect data and calculate the average rainfall over a period of years. The program should first ask for the number of years. The outer loop will iterate once for each year. The inner loop will iterate twelve times, once for each month. Each iteration of the inner loop will ask the user for the inches of rainfall for that month. After all iterations, the program should display the number of months, the total inches of rainfall, and the average rainfall per month for the entire period. Write a code and a Pseudo code