0
Que está mal? En los casos me salen 2 bien y el primero vacio...tiene errores?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Code_Coach_Challenge { class Program { static void Main(string[] args) { string name = Console.ReadLine(); int edad = Convert.ToInt32 (Console.ReadLine()); Console.WriteLine("Name: "+ name); Console.WriteLine ("Edad: "+ edad); } } }
9 Réponses
+ 4
you get more answers by tagging your post with java and show code in codeplayground
0
what this code is about? add link or problem description here..anibal heredia
0
Es el 5.2 del principio
0
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Code_Coach_Challenge
{
class Program
{
static void Main(string[] args)
{
string name = Console.ReadLine();
int edad = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Name: "+ name);
Console.WriteLine("Edad: "+ edad);
}
}
}
0
Esta bien pero no me lo aprueba
0
use "Age" in output
0
Yes! Thanks!
0
Need this :
Console.WriteLine("Age: "+ edad);
You are doing it in your language but it asking to print "age" text in english in this Console.WriteLine("Edad: "+ edad);
Edit:
You're welcome..
0
Gracias