Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~859 People Reached
Favorite Forums
Favorite Tags
Member Avatar for mcmanuel20

/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package primenumber; /** * * @author mcmanuel */ public class PrimeNumber { /** * @param args the command line arguments */ public static void main(String[] args) { int num, a, b, …

Member Avatar for Taywin
0
167
Member Avatar for mcmanuel20

public class Calculate { Calculate() { int x,y,sum, multiply,devide; x=12; y=5; sum=x+y; multiply=x*y; devide=x/y; } public static void main(String[] args) { System.out.println("the sum of two numbers:" + sum); System.out.println("the multiple of two numbers:" + multiply); System.out.println("the devition of two numbers:" + divide); } }

Member Avatar for JamesCherrill
0
152
Member Avatar for mcmanuel20

How to i write a c# programme to store data into a text file using C#? using System; using System.Collections.Generic; using System.Linq; using System.Text; class Contact { string Name; string Address; string Email; string PhoneNo; public void AddContact() { Console.WriteLine("Enter contact name"); Name = Console.ReadLine(); Console.WriteLine("Enter contact Address"); Address = …

Member Avatar for Mike Askew
0
321
Member Avatar for mcmanuel20

using System; using System.Collections.Generic; using System.Linq; using System.Text; class Contact { string Name; string Address; string Email; string PhoneNo; public void AddContact() { Console.WriteLine("Enter contact name"); Name = Console.ReadLine(); Console.WriteLine("Enter contact Address"); Address = Console.ReadLine(); Console.WriteLine("Enter contact Email"); Email = Console.ReadLine(); Console.WriteLine("Enter contact PhoneNo"); PhoneNo = Console.ReadLine(); } public void …

Member Avatar for Mike Askew
0
119
Member Avatar for mcmanuel20

You are working as a software developer in a company named Blue Moons, Inc. Your team has been assigned the task of developing software that would assist the users to store and retrieve personal information. According to the requirement specifications, the software should provide the functionality to store contact details …

Member Avatar for mcmanuel20
0
100