Nome in ordine inverso
Week 1: Suggestion 1 Write a program to ask a user for their name and output their name in reverse order. Such as: INPUT: James OUTPUT: semaJ.… Leggi tutto »Nome in ordine inverso
Week 1: Suggestion 1 Write a program to ask a user for their name and output their name in reverse order. Such as: INPUT: James OUTPUT: semaJ.… Leggi tutto »Nome in ordine inverso
Week 8: Graphical Write a program that will draw a regular polygon for any given number of sides. For example if the user enters 5 then the… Leggi tutto »Poligono regolare
Week 8: Text Write a program that allows the user to enter a sentence which the computer will then spell check. Hint: Use the Dictionary… Leggi tutto »Controllo ortografia 1
2012-07: Easy Math calculation Apple’s weight is 300 g. orange’s weight is 200 g. You measured the weight of the apples and oranges by analogue… Leggi tutto »Bilancia
Un’operazione aritmetica applicata a due numeri inseriti da tastiera. TextWindow.Write(“Primo numero: “) numero1 = TextWindow.ReadNumber() TextWindow.Write(“Secondo numero: “) numero2 = TextWindow.ReadNumber() r = numero1+numero2 TextWindow.WriteLine(numero1… Leggi tutto »Le 4 operazioni