Programma concluso

This commit is contained in:
La Programmatrice Verde 2024-11-29 09:48:49 +01:00
parent 439c754da5
commit 1065469102
20 changed files with 115 additions and 1 deletions

View File

@ -4,6 +4,19 @@ class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
const int dimensione=20;
char[] lettere = new char[dimensione];
Console.Clear();
for (int i = 0; i < lettere.Length; i++){
Console.WriteLine("Inserire una lettera alla volta per stampare una frase (massimo " +dimensione + " lettere, inserire uno spazio se hai meno di " +dimensione + " lettere)");
Console.Write("Inserire la lettera n. " +(i+1) + ": ");
lettere[i]=Convert.ToChar(Console.ReadLine());
Console.Clear();
}
Console.Write("La tua frase è: ");
for (int i = 0; i < lettere.Length; i++){
Console.Write(lettere[i]);
}
}
}

BIN
bin/Debug/net9.0/array_1 Executable file

Binary file not shown.

View File

@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"array_1/1.0.0": {
"runtime": {
"array_1.dll": {}
}
}
}
},
"libraries": {
"array_1/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]

BIN
obj/Debug/net9.0/apphost Executable file

Binary file not shown.

View File

@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("array_1")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+439c754da5ea69e88be4766935194b4d75367f6d")]
[assembly: System.Reflection.AssemblyProductAttribute("array_1")]
[assembly: System.Reflection.AssemblyTitleAttribute("array_1")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generato dalla classe WriteCodeFragment di MSBuild.

View File

@ -0,0 +1 @@
f0ca51ca78e8432d98c48e599b926b0915d37b37b7d9a3c2d05a5461579f9f00

View File

@ -0,0 +1,15 @@
is_global = true
build_property.TargetFramework = net9.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = array_1
build_property.ProjectDir = /home/BrainTheBest5/git/array_1/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =

View File

@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.

View File

@ -0,0 +1 @@
436df3f5c73bdde6738da001a03b34d88348e1d2f2531c934c69612a251735dd

View File

@ -0,0 +1,14 @@
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/array_1.GeneratedMSBuildEditorConfig.editorconfig
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/array_1.AssemblyInfoInputs.cache
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/array_1.AssemblyInfo.cs
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/array_1.csproj.CoreCompileInputs.cache
/home/BrainTheBest5/git/array_1/bin/Debug/net9.0/array_1
/home/BrainTheBest5/git/array_1/bin/Debug/net9.0/array_1.deps.json
/home/BrainTheBest5/git/array_1/bin/Debug/net9.0/array_1.runtimeconfig.json
/home/BrainTheBest5/git/array_1/bin/Debug/net9.0/array_1.dll
/home/BrainTheBest5/git/array_1/bin/Debug/net9.0/array_1.pdb
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/array_1.dll
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/refint/array_1.dll
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/array_1.pdb
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/array_1.genruntimeconfig.cache
/home/BrainTheBest5/git/array_1/obj/Debug/net9.0/ref/array_1.dll

Binary file not shown.

View File

@ -0,0 +1 @@
41e076f8e0c851dac5af9399d1a4c1027e76dd324c871dd4987dd3f56cda9cb9

Binary file not shown.

Binary file not shown.

Binary file not shown.