Popular posts from this blog
Student result management level-1 DFD
By
Hemant Gupta
-
An algorithm for calculating the day of the week given a Date
By
Hemant Gupta
-
Given a date and calculate day of the week: i mport java.util.*; public class Datetoday { final static String[] WEEK_DAYS = { "Saturday", "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday" }; public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Enter the date in dd/mm/yyyy form: "); String[] partofdate = input.nextLine().split("/"); int d = Integer.parseInt(partofdate[0]); int m = Integer.parseInt(partofdate[1]); ...
i will like to get the flowchart of the following statement.......an order form a new customer if not more than $200,000.00,otherwise reffered to the supervisor an order from a regular old customer is always accepted.
ReplyDeleteIt is very simple just make an decision box of diamond and enter your amount then go with two arrows one with true condition and other with false condition.Hope i am cleared with what you mean.
ReplyDelete