se mais JS
if (condition) {
// statement
} else if(condition){
// statement
}else{
// statement
}
CodePadding
if (condition) {
// statement
} else if(condition){
// statement
}else{
// statement
}
var condition = true; // An example condition for true/false conditions
if (condition == true) {
console.log('condition is true');
} else {
console.log('condition is not true');
} // Console will output 'condition is true'
using System;
class NumbersNotDivisibleBy3And7
{
static void Main()
{
Console.WriteLine("Enter an integer:");
int n = int.Parse(Console.ReadLine());
for (int i = 1; i <= n; i++)
{
if (i % 3 != 0 && i % 7 != 0)
{
Console.Write("{0} ", i);
}
}
Console.WriteLine();
}
}