-1

I was solving 30 days of code's second day.

    int i = 4;
    double d = 4.0;
    string s = "HackerRank ";

    int a = 12;
    double b = 4.0;
    string c = "is the best place to learn and practice coding!";
    
    
    a = Convert.ToInt32(Console.ReadLine()); ???????????
    b = Convert.ToDouble(Console.ReadLine());
    c = Console.ReadLine();
    

    Console.WriteLine(i + a);
    Console.WriteLine((d + b).ToString("F1"));
    Console.WriteLine(s + c);

I did not understand why do we use convert. Why am i converting this variables to console.readline??

Question:

Objective Today, we're discussing data types. Check out the Tutorial tab for learning materials and an instructional video!

Task Complete the code in the editor below. The variables , , and are already declared and initialized for you. You must:

Declare variables: one of type int, one of type double, and one of type String. Read lines of input from stdin (according to the sequence given in the Input Format section below) and initialize your variables. Use the operator to perform the following operations: Print the sum of plus your int variable on a new line. Print the sum of plus your double variable to a scale of one decimal place on a new line. Concatenate with the string you read as input and print the result on a new line. Note: If you are using a language that doesn't support using for string concatenation (e.g.: C), you can just print one variable immediately following the other on the same line. The string provided in your editor must be printed first, immediately followed by the string you read as input.

Input Format

The first line contains an integer that you must sum with . The second line contains a double that you must sum with . The third line contains a string that you must concatenate with .

Output Format

Print the sum of both integers on the first line, the sum of both doubles (scaled to decimal place) on the second line, and then the two concatenated strings on the third line.

Sample Input

12 4.0 is the best place to learn and practice coding! Sample Output

16 8.0 HackerRank is the best place to learn and practice coding! Explanation

When we sum the integers and , we get the integer . When we sum the floating-point numbers and , we get . When we concatenate HackerRank with is the best place to learn and practice coding!, we get HackerRank is the best place to learn and practice coding!.

You will not pass this challenge if you attempt to assign the Sample Case values to your variables instead of following the instructions above and reading input from stdin.

  • [int.Parse](https://learn.microsoft.com/en-us/dotnet/api/system.int32.parse?view=net-6.0) would probably be better. https://stackoverflow.com/questions/199470/whats-the-main-difference-between-int-parse-and-convert-toint32 – Jodrell Aug 24 '22 at 09:29
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Aug 24 '22 at 10:54

1 Answers1

0

"Why am i converting this variables to console.readline??" you're not, you are converting the value returned by Console.Readline() and you specify to convert it into an Int32 with Convert.ToInt32()

By default, the Console.Readline() method returns a string (see the documentation), but you wanna use the result as an int so that's why you have to convert it

  • Thank you for answer but i still have the same result when i'm not converted? Is it something necessary? – fırtına necati Aug 24 '22 at 09:47
  • And when i used this code in visual studio and started it i just get a blank screen but when i turn the convert codes to comment lines. Then i see sums? – fırtına necati Aug 24 '22 at 09:51
  • In your code, you declare `a` as an `int`. Then you want to assign to it the value of `Console.ReadLine()`, **but** the value of `Console.ReadLine()` is a `string`. Because C# is a typed language and you declared `a` as an `int`, you have to convert the `string` into an `int` to make it work. You can see this as if you order something online, like a couch : you **expect to receive a couch**, and not (for example) a bed. Now `a` **expect to receive an `int`**, and not (if you don't convert `Console.ReadLine()`) a `string` – Error 404 Brain not found Aug 24 '22 at 10:03