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 Johan__

hello this is a homework so please dont give me the answer to the problem. int num1, num2; for (num1 = 1; num1 <= 101; num1++) { for (num2 = 1; num2 <= 101; num2++) { if (num1 / num2 == 5) Console.WriteLine(num1 + "/" + num2); } } Console.ReadLine(); …

Member Avatar for tinstaafl
0
113
Member Avatar for Johan__

[CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Booking { public partial class MainForm : Form { private double revenue = 0.0; private const int totalNumOfSeats = 240; private int numOfReservedSeats = 0; public MainForm() { InitializeComponent(); InitializeGUI(); } private void …

Member Avatar for ddanbe
0
148
Member Avatar for Johan__

hello If i want this private bool ReadAndValidateName(out string name) to call in to this private void txtPrice_TextChanged_1(object sender, EventArgs e) so every thing ho is in bool is going in to text

Member Avatar for skatamatic
0
63
Member Avatar for Johan__

This is what im going to do. and i was wondering is 0 and max value going in to this or in to InputUtility class? and how do you call GetDouble? Convert the contents of the price TextBox to a double and validate the converted value so it is >= …

0
41
Member Avatar for Johan__

Hello [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class WholeNumbersFor { private int numOfInPut; private int sum; public void start(); WriteProgramInfo(); ReadInPut(); SumNumbers(); ShowResults(); } private void ReadInPut() { Console.Write ("Number of Values to sum?"); NumOfInPut = int.Parse(console.Readkey()); console.Writeline(); } private void WriteProgramInfo() { console.Writeline("\n\n ++++++ …

Member Avatar for mani-hellboy
0
92
Member Avatar for Johan__

hello. [CODE]Public Class GasPump Private name As String Private quan As Double Private prequa As Boolean Private total As Double Private YN As String Private Const RegularPrice As Double = 13.08 Private Const PrimePrice As Double = 13.56 Public Sub Start() Readinput() Calctotaltopay() Printrecept() End Sub Private Sub Readinput() Console.Write("What's …

Member Avatar for Johan__
0
150
Member Avatar for Johan__

Hello [CODE] class Product { private string Produuct; private decimal Price; private decimal Vat; private bool Food; private int Count; private const decimal foodVATRate = 0.12m, otherVATRate = 0.25m; private decimal Finalprice; private decimal Rate; public void Start() { Readinput(); CalculateValues(); Printrecept(); } private void Printrecept() { throw new System.NotImplementedException(); …

Member Avatar for ReshmaRajan
0
160
Member Avatar for Johan__

hello. i was wondering if same one can help me with 2 thinks and if you se samthing wrong white the code you can say that 2 so i can fix it. this is my code. [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Uppgift_1 { class Product { …

Member Avatar for thines01
0
92