This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
THE 23135851162 | |
OF 13151942776 | |
AND 12997637966 | |
TO 12136980858 | |
A 9081174698 | |
IN 8469404971 | |
FOR 5933321709 | |
IS 4705743816 | |
ON 3750423199 | |
THAT 3400031103 |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; # CMUdict -- Major Version: 0.07 | |
;;; | |
;;; # $HeadURL$ | |
;;; # $Date:: $: | |
;;; # $Id:: $: | |
;;; # $Rev:: $: | |
;;; # $Author:: $: | |
;;; | |
;;; # | |
;;; # ======================================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
term_cd,instructor,uid,INSTR_func_cd,subj_area_cd,crs_catlg_no,sect_no,srs,type,crs_short_ttl,A+,A,A-,B+,B,B-,C+,C,C-,D+,D,D-,F,I,NR,P,NP,IP,S,U,L,DR,R,drp | |
161,"BROWN, K.H.",,,POL SCI,0040, 001,324121110,LEC,INTRO-AMERICN PLTCS,7,6,8,5,4,4,1,4,0,2,3,0,6,0,0,2,0,0,0,0,0,0,0,0 | |
161,"ESDIN, J.",,,PHYSCI,0005, 001,387015930,LEC,HMN PHYS-DIET&EXRCS,3,24,3,6,4,2,1,0,1,0,0,0,2,0,0,4,1,0,0,0,0,0,0,0 | |
161,"FALCE-ROBINSON, J.",,,SPAN,0003, 004,349010130,LEC,ELEMENTARY SPANISH,0,3,7,6,3,1,1,0,0,0,0,0,1,0,0,6,0,0,0,0,0,0,0,0 | |
161,"FINK, R.W.",,,MUS HST,0008, 001,278024110,LEC,HIST-ELEC DNCE MUSC,12,2,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 | |
161,"GREENE, R.E.",,,MATH,0170A, 001,262660910,LEC,PROBABILITY THEORY,2,9,6,0,11,2,0,5,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 | |
161,"HIERONYMI, P.",,,PHILOS,0022, 001,312079910,LEC,INTRO-ETHICAL THRY,0,4,5,3,4,1,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0 | |
161,"HOLLAND, C.D.",,,FILM TV,0135A, 002,238510210,LAB,ADV SCRNWRTNG WKSHP,0,7,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 | |
161,"JANSMA, K.",,,FRNCH, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Problem: Given that 2011 is both a prime number and | |
// a sum of 11 consecutive prime numbers, | |
// find the immediate next number that satisfies both conditions. | |
#include <iostream> | |
#include <cstdio> | |
#define MAX_NUMBER 1000000 | |
#define TARGET_NUMBER 2011 | |
using namespace std; | |
int primeTable[MAX_NUMBER]; |
NewerOlder