Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Основна практика кодування | Робота з типами даних
Основи C#
course content

Зміст курсу

Основи C#

Основи C#

1. Початок роботи
3. Структури управління
4. Цикли
5. Масиви
6. Методи

bookОсновна практика кодування

Число зберігається у змінній під назвою num у вигляді string. Додайте 2 до збереженого числа. Ви можете використовувати наступні кроки:

  • Перетворіть значення рядка num на ціле число та збережіть його в новій цілочисельній змінній під назвою temp.
  • Додайте 2 до значення temp.
  • Перетворіть значення temp на string і присвойте його змінній num
cs

main

copy
123456789101112131415161718
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { string num = "15"; // Write code below this line // Write code above this line Console.WriteLine(num); // Expected Output: 17 } } }
  1. Використовуйте Convert.ToInt32() та Convert.ToString().
cs

main

copy
1234567891011121314151617181920
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { string num = "15"; // Write code below this line int temp = Convert.ToInt32(num); temp = temp + 2; num = Convert.ToString(temp); // Write code above this line Console.WriteLine(num); // Expected Output: 17 } } }
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 14
some-alt