Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Período
using System; using System.Collections; namespace Rextester { public class Program { public static string entero_hacia_string(int numero) { var texto = ""; for(; numero>0; numero/=10){ texto = numero%10 + texto; } return texto; } public static string periodizar(string entero_1,string entero_2) { var texto = ""; foreach(var c in entero_1){ if(texto.Length!=0){ texto += " "; } var multiplicado = (c-'0')*(entero_2[0]-'0'); texto += multiplicado; Console.WriteLine( c + "*" + entero_2[0] + " = " + multiplicado); entero_2 = entero_2.Substring(1)+entero_2.Substring(0,1); } return texto; } public static IList convertir(string cadena) { var cortado = cadena.Split(' '); Console.WriteLine(cortado); var array = new ArrayList(); foreach(var s in cortado){ int entero = int.Parse(s); Console.WriteLine(entero.GetType()); array.Add(entero); } return array; } public static void Main(string[] args) { var entero_1 = entero_hacia_string(123456); var entero_2 = entero_hacia_string(456); var periodo = periodizar(entero_1,entero_2); var convertido = convertir(periodo); Console.WriteLine("'" + entero_1 + "' '" + entero_2 + "'"); Console.WriteLine(""); Console.WriteLine(convertido); foreach(var item in convertido) { Console.Write(item+" "); } Console.Write(""); } } }
run
|
edit
|
history
|
help
0
Pramod
using int.TryParse
Fórum ➡ Prime numbers implemented using LINQ statements AND using FOR loop ♦
FromBase64String
Login Silencioso
Display the pattern like diamond by using c# for loop
Pending Finalizer
Olymp
Nuzrath 284
test1