After going through our lesson, let's fill in the triple Venn diagram shown below.In each circle, enumerate the individual and unique features of informative, journalisticand literary writing. However, on the overlapping parts of the circles, identify commonfeatures shared between these types of discourse.Journalistic WritingInformative WritingLiterary WritingMaking Connections to Your Schema
Answers
Answered by
8
Answer:
hey mate here is your answer
hope it helps
be brainly
class Check
{
public static void main (String args[])
{
char ch; int a,b,sum,sub,mul,rem;double div;
Scanner sc= new Scanner(System.in);
System.out.println("Hey, here is your answer");
ch=sc.next().charAt(0);
a=sc.nextInt();
b=sc.nextInt();
if(ch=='+')
{
sum= a+b;
System.out.println("sum is"+sum);
}
else if(ch=='-')
{
sub=a-b;
System.out.println("Substaction is"+sub);
}
else if (ch=='*')
{
mul=a*b;
System.out.println("Multipication is"+mul);
}
else if (ch=='/')
{
div=(double) a/b;
System.out.println("Quotient is"+div);
}
else if (ch=='%')
{
rem=a%b;
System.out.println("Reminder is"+rem);
}
else
System.out.println("Invalid operator");
}
}
Similar questions