Skip to content

Instantly share code, notes, and snippets.

@tolmicl
tolmicl / gist:23104cbb24a4ad391f8553a2d77710b1
Last active January 21, 2017 07:28
Computer-Assisted Instruction
using System;
namespace p739
{
class p739
{
static void Main(string[] args)
{
while (true)
@tolmicl
tolmicl / p331.cs
Last active January 14, 2017 05:41
using System;
class p331
{
static void Main(string[] args)
{
double height;
double weight;
double BMI;
@stephaniekwoods
stephaniekwoods / Assign3.java
Last active June 26, 2018 03:18 — forked from cwake/Assign3.java
latest working version
import java.io.*;
import java.util.*;
public class stephsFork1 {
public static void intro() {//figure out what we want to say
System.out.println("This program reports information about DNA");
System.out.println("nucleotide sequences that may encode proteins.");
System.out.println("(such as Captain Picards hair growth protein)");
System.out.println("");