Skip to content

Instantly share code, notes, and snippets.

using System;
class p739
{
static void Main(string[] args)
{
Console.WriteLine("Enter 3 numbers between 1 and 30");
string[] tokens = Console.ReadLine().Split();
int a = int.Parse(tokens[0]);
using System;
class p739
{
static void Main(string[] args)
{
int answer = generateQuestion();
int user = Convert.ToInt32(Console.ReadLine());
@cwake
cwake / p331.cs
Created January 14, 2017 05:37 — forked from tolmicl/p331.cs
using System;
class p331
{
static void Main(string[] args)
{
double height;
double weight;
double BMI;
@cwake
cwake / EAN13.java
Created January 11, 2016 07:27 — forked from imbuhira/EAN13.java
Java program that asks the user for a EAN13 and validates it as either correct or incorrect.
import java.security.InvalidAlgorithmParameterException;
import java.util.Scanner;
/**
* @version 1
* @author ChloeWake,Imbuhira
*
*/
public class EAN13 {
public static void main (String[] args){