Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #20.4K
Ranked #3K
~2K People Reached
Interests
Java,C++,WebDesigning,VB,Game Development And Graphics Designing
Favorite Tags

8 Posted Topics

Member Avatar for rabeea_1

# ** Here's Your Modified Code ** # import java.util.*; import java.io.*; class Case { public static void main (String args[ ])throws Exception { Scanner input= new Scanner (System.in); BufferedReader br =new BufferedReader(newInputStreamReader(System.in)); int x; char ch; do { System.out.println(); System.out.println("\n"); System.out.println(" *** *** "); System.out.println(" ** ** ** ** …

Member Avatar for rabeea_1
0
159
Member Avatar for shahab.burki_1

#include<stdio.h> #include<conio.h> void main() { int a,b; char op; printf("Welcome To Command Based Calculator\n"); printf("Now enter two numbers"); scanf("%d",&a); scanf("%d",&b); printf("Select the desired operator\n"); scanf(" %c",&op); printf("the value in op is %c\n",op); switch(op) { case '+': printf("%d + %d = %d", a, b, a+b); break; case'-': printf("%d - %d = …

Member Avatar for <Anurag>
0
662
Member Avatar for drsnet41

import java.applet.*; import java.awt.*; /* <applet code="test" height=500 width=500> </applet> */ public class test extends Applet { public void paint(Graphics g) { g.drawString("Hello",123,125); } } I have just added this comment block /* */ and it worked for me,and yes it will ask for class expected if you remove this …

Member Avatar for <Anurag>
0
209
Member Avatar for rookieNeedsHelp

Here is a code for your query #include<stdio.h> #include<conio.h> void main() { unsigned int time,hour,mins,secs; printf("enter time in secs"); scanf("%d",&time); g1: if(time!=0) { hour=time/3600; time=time%3600; mins=time/60; time=time%60; secs=time; printf("hours=%d\nmins=%d\nsecs=%d",hour,mins,secs); } else { printf("enter minutes and secs"); scanf("%d%d",&mins,&secs); time=(mins*60)+secs; goto g1; } getch(); } The above code will convert "seconds" entered …

Member Avatar for rookieNeedsHelp
0
433
Member Avatar for Henshens
Member Avatar for UFOOOOOOOOOOO
0
187
Member Avatar for uttkarshsing

In function Overloading all function to be overridden have same function name but their data type and arguments differ from each other while In overriding the function name, data type of funcions and there arguemts are same. ## Example of function overloading ## void getdata(int a,int b); int getdata(int a,int …

Member Avatar for deceptikon
0
201
Member Avatar for umiya

why photoshop is not install when i uninstall it if i format hardisk then photoshop is install????????????? *are you trying to say that you have to format harddisk to reinstall photoshop*

Member Avatar for <Anurag>
0
63
Member Avatar for junior.dau

Just Download latest version of avast and upgrade it every year for free or use Bit Defender, But my suggestion is Avast instead of going for any paid one.

Member Avatar for <Anurag>
0
140

The End.