TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
anndy smaals
NA
24
4.3k
Nested if's exclusives
Dec 18 2018 11:55 AM
adding a nested if statement after the assignment of result1 to output,
such that when the sum of i and j is greater than twenty if i and j are also within 3 units of each other exclusive append result2 to the output
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
int i = 10; int j = 5;
const string result1 = "Rock";
const string result2 = "Paper";
string output = "";
if(i + j > 20)
{
output += result1;
if ((i <= j + 3 )&& (j <= i -3))
{
output += result2;
}
}
Console.WriteLine(output);
}
}
Reply
Answers (
4
)
AJAX ComboBox - required field validator
logical and relational expressions