Answer:
The girl that fed the dying boy?/
Explanation:
Answer:
# include <iostream.h>
# include <stdio.h>
# include <string.h>
using namespace std;
class citizen
{
int i;
public string name[30];
public long int phonenumber[30];
public void addindividual(string name1)
{
If (i<=30)
{ int flag=0;
for(int j=0; j<=i;j++)
{
if (strcmp(name[i], name1)
{
flag=1;
}
else
{
flag=0;
}
}
If (flag)
{
if (i<30)
{
for(j=i+1;j<=30; j++)
{
cout<<"Enter the name:"; getchar(name[j]);
cout<<"Enter the phone number:"; cin>>phonenumber[j];
i++;
}
else
{
cout<<"The person already exists";
exit();
}
}
else
{
cout<<"array is full:";
exit();
}
}
}
Void main()
{
string str;
cout<<" Enter name:";
getline(cin, str); ;
citizen c1=new citizen();
c1.addindividual(name1);
}
Explanation:
With a little more effort you can make the program allow the user to enter any number of details, but less than 30 overall. We have used here flag, and as a programmer we know why we use the Flag. It is used to check whether certain Boolean condition is fulfilled or not. Here, we are checking whether a given name is present in the array of names, and if it is not present, we add that to the list. And if the name is present, we print, it already exist.
Answer:
// here is code in java.
import java.util.*;
// class definition
class Solution
{
// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// scanner object
Scanner s=new Scanner(System.in);
// variables
String s_name;
int s_num;
System.out.print("Please enter the name:");
// read the student name
s_name=s.nextLine();
System.out.print("Please enter the number:");
// read the student number
s_num=s.nextInt();
// print name and number 12 times
for(int i=0;i<12;i++)
{
System.out.println(s_name+"----"+s_num);
}
}catch(Exception ex){
return;}
}
}
Explanation:
Create a scanner class object to read input from user.Read the student name and the number from user and assign them to variable "s_name" and "s_num".Print the student name and number 12 times with the help of for loop.
Output:
Please enter the name:Mary Kaur
Please enter the number:123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456
Mary Kaur----123456