myCompiler myCompiler
Deutsch English Español Français Italiano 日本語 한국어 Nederlands Polski Português
Recent
Login Sign up
Recent
Login Sign up
W

@WiggedPrince56668

Printing no from 1-10

Lua
3 years ago
for i=1,10,1 do print(i) end

Program to accept the end value and calculate the sum of all no divisible by 5 from 1-end value

Lua
3 years ago
Sum=0 print("Enter your final value") n=io.read("*n") i=0 while(i<=n) do if(i%5==0) then Sum=Sum+i end

Program to print the user inputted number's factors

Lua
3 years ago
n=io.read("*n") for i=1,n,1 do if(n%i==0) then print(i) end end

that takes the no of items sold by a salesman in the past 10 months & display the sum of items sold

Lua
3 years ago
Sum=0 for i=1,10,1 do print("Enter the total items sold for this month") n=io.read("*n") Sum=Sum+n end print("Sum of the items sold in the past 10 months are", Sum)

Program to display multiplication table

Lua
3 years ago
n=io.read("*n") for i=1,10,1 do print(n*i) end

A program to change the given text into handwritten notes.

Python
3 years ago
import pywhatkit pywhatkit.text_to_handwriting('''Learning Python from the basics is extremely important. Before starting to learn python,understanding a base language like c is a must and some of the oops concepts.Python program has many modulesand packages, which helps with efficient programming. Understanding these modules and 1proper usage of many syntax and libraries is recommended. In this article, a few modules and packages are used in the program. Python includes tons of li
Previous Next page

Supported languages

Deno JavaScript NodeJS Python Ruby Go C C++ Java C# TypeScript PHP Bash R Octave (MATLAB) Fortran Lua Erlang SQL MySQL MongoDB Clojure D Perl Kotlin Swift Rust Assembly
© 2026 mycompiler.io
Terms of service Privacy policy Contact us