No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
/* * 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, … | |
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); } } | |
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 = … | |
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 … | |
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 … |
The End.