+ 1
Помогите пожалуйста
Нужно написать программу, которая будет выводить все числа от 1 до N, заменяя все числа кратные 3 на "*". Я написал следующее: https://code.sololearn.com/c7dQ9GcB3V8x/?ref=app Но непониманию почему не работает Подскажите как решить пожалуйста
5 Réponses
+ 1
Maybe
for(int x = 0;x<=number;x++){
if(x%3 == 0){
Console.WriteLine("*");
continue ;
}
Console.WriteLine(x);
}
+ 4
There are some mistakes.
First there is a typo you wrote two "u"s
using System;
instead of "uusing System;"
for (int x = 0; x<=number; x++) {
instead of "for(int x = 0;number<=x;x++){"
// Keep learning & happy coding :D
+ 1
Thanks
0
This code does not change the number multiple of three to a character
0
Thanks