Popular posts from this blog
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]); ...
Student result management level-1 DFD
By
Hemant Gupta
-
sexy
ReplyDeletebnbn
ReplyDeleteis(B>c)?
ReplyDeleteyour flowchart condition wrong..because this condition is false means then go in to print c not print b................
Yes u r correct.
Deleteis(B>c)?
YES->PRINT B
NO->PRINT C
ya..
ReplyDeleteIf B<C then Print C,not B
Yes It is to be connected to C if B>C is No. How can it connect to same step for both YES and NO answers
ReplyDeleteRamesh Pulluri.. (Sparkrill International School, Waraganl)
the flow chart is slightly erroneous..we can not connect the same STEP to both the condition of true false..when we ask B>C nd if the condition is yes we print B and if the condition is false we print C
ReplyDeleteGood, but I think it is a little hard process
ReplyDeleteThanks, but try to make it easier