Home
О нас
Products
Services
Регистрация
Войти
Поиск
Pomogu678
@Pomogu678
August 2022
2
3
Report
ИНФОРМАТИКА СРОЧНО ПОМОГИТЕ
VisualStudio на языке #с
С помощью цикла while( )
Вывести цифра от 1 до 10 в стрчку
В обратном порядке через "-"
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
pacixor
Using System;
public class Test
{
public static void Main()
{
int n = 0;
while (++n <= 10) Console.Write("{0} ",n);
Console.WriteLine();
n = 11;
while (--n > 1) Console.Write("{0}-",n);
Console.WriteLine(n);
Console.ReadLine();
}
}
Результат:
1 2 3 4 5 6 7 8 9 10
10-9-8-7-6-5-4-3-2-1
1 votes
Thanks 0
petyaGavrikov
Verified answer
Static void Main(string[] args)
{
int n = 10;
while (n > 0)
{
Console.Write(n);
n--;
if (n != 0)
{
Console.Write("-");
}
}
Console.WriteLine();
Console.ReadLine();
}
0 votes
Thanks 0
More Questions From This User
See All
Pomogu678
August 2022 | 0 Ответы
sostavte molekulyarnoe uravnenie ishodya iz ionnogo s2 2hh2s2h2o
Answer
Pomogu678
October 2021 | 0 Ответы
osushestvit cepochku prevrashenij etilen etan 12 dihloretan
Answer
Pomogu678
September 2021 | 0 Ответы
pomogite nado srochno kazhdomu vyrazheniyu v levom stolbce sootvetstvuet odno iz zna
Answer
рекомендуемые вопросы
rarrrrrrrr
August 2022 | 0 Ответы
o chem dolzhny pozabotitsya v pervuyu ochered vzroslye pri organizacionnom vyvoze n
danilarsentev
August 2022 | 0 Ответы
est dva stanka na kotoryh vypuskayut odinakovye zapchasti odin proizvodit a zapcha
myachina8
August 2022 | 0 Ответы
najti po grafiku otnoshenie v3v1 v otvetah napisano 9 no nuzhno reshenie
ydpmn7cn6w
August 2022 | 0 Ответы
Choose the correct preposition: 1.I am fond (out,of,from) literature. 2.where ar...
millermilena658
August 2022 | 0 Ответы
opredelite kak sozdavalas i kto sozdaval arabskoe gosudarstvo v kracii
MrZooM222
August 2022 | 0 Ответы
ch ajtmanov v rasskaze krasnoe yabloko ispolzuet metod rasskaz v rasskaze opi
timobila47
August 2022 | 0 Ответы
kakovo bylo naznachenie kazhdoj iz chastej vizantijskogo hrama pomogite pozhalujsta
ivanyyaremkiv
August 2022 | 0 Ответы
moment. 6....
pozhalujsta8b98a56c0152a07b8f4cbcd89aa2f01e 97513
sarvinozwakirjanova
August 2022 | 0 Ответы
pomogite pozhalusto pzha519d7eb8246a08ab0df06cc59e9dedb 6631
×
Report "ИНФОРМАТИКА СРОЧНО ПОМОГИТЕ VisualStudio на языке #с С помощью цикла while( ) Вы..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
public class Test
{
public static void Main()
{
int n = 0;
while (++n <= 10) Console.Write("{0} ",n);
Console.WriteLine();
n = 11;
while (--n > 1) Console.Write("{0}-",n);
Console.WriteLine(n);
Console.ReadLine();
}
}
Результат:
1 2 3 4 5 6 7 8 9 10
10-9-8-7-6-5-4-3-2-1
Verified answer
Static void Main(string[] args){
int n = 10;
while (n > 0)
{
Console.Write(n);
n--;
if (n != 0)
{
Console.Write("-");
}
}
Console.WriteLine();
Console.ReadLine();
}