0

Como preguntarle al usuario Âż CuĂĄl es el nombre de tu perro? Y el usuario lea la pregunta y responda y que se guarde en variable

https://code.sololearn.com/c63F0iMdPu6P/?ref=app

10th Aug 2020, 2:12 AM
Stella Reynols
Stella Reynols - avatar
2 Answers
0
Puede generar informaciĂłn mediante System.out.println ("Introduzca el nombre del perro"); Lea sobre cĂłmo tomar entradas por escĂĄner. siguiente(); aceptarĂĄ una cadena lĂ­nea siguiente(); aceptarĂĄ toda la lĂ­nea de cadenas. Puede almacenarlo en una cadena directamente. You can output information by System.out.println(" Enter dog name"); Read about taking inputs by scanner. next(); will accept a string nextLine(); will accept entire line of strings.. You can store it in a string directly.. https://www.sololearn.com/learn/Java/2220/
10th Aug 2020, 3:29 PM
Jayakrishna 🇼🇳
- 1
#include <iostream> #include <string> using namespace std; int main(){ string perro; cout << "Cual es el nombre de tu perro? \n"; cin >> perro; return 0; }
10th Aug 2020, 4:24 AM
Gabriel Castro
Gabriel Castro - avatar