It seems that you have forgotten the essential options to answer this question. But anyway, hope this answer will help you find what you are looking for.
When we say presentation software, this is a software that is used <span> to display information in the form of a </span>slide show<span>. It allows you to format text, include graphic images and present the content in a slide show. Hope this helps.</span>
Answer:
using System.IO;
using System;
class FineForOverdueBooks
{
static void Main()
{
Console.WriteLine("Enter the number of books user checked out: ");
int books = Convert. ToInt32(Console.ReadLine());
Console.WriteLine("Enter the number of overdue days: ");
int days = Convert. ToInt32(Console.ReadLine());
DisplayFine(books, days);
}
public static void DisplayFine(int books, int days) {
double amt = 0;
int d = days;
if(days>7) {
amt = (days-7) * .20 * books;
days = 7;
}
if(days > 0) {
amt = amt + days * .10 * books;
}
Console.WriteLine("The fine for {0} book(s) for {1} day(s) is {2}", books, d, amt);
}
}
Explanation:
Answer:
1101001 is binary 105
128 in binary is 10000000
I believe you will find all your answers here,
http://www.csun.edu/prospectivestudents/cost-attendance