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
| #include<stdio.h> | |
| int reverseDigits(int userNumber); | |
| void sumOriginalReverse(void); | |
| int userNumber; | |
| int main(void) | |
| { | |
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
| #include<stdio.h> | |
| #include<cs50.h> | |
| int main (void) | |
| { | |
| int hgt = 0;// Initialize variable | |
| int i, y; | |
| do |
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
| #include<stdio.h> | |
| #include<math.h> | |
| #include<cs50.h> // only for CS50 IDE | |
| int main (void) | |
| { | |
| float change, rnd; | |
| int quarters, dimes, nickles, pennies, coins; | |
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
| #include<stdio.h> | |
| #define SIZE 20 | |
| size_t i; | |
| int j, k; | |
| int main (void) | |
| { | |
| int numberArray[SIZE]; |
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
| #include<stdio.h> | |
| #include<string.h> | |
| #define SIZE 30 | |
| int main(void) | |
| { |
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
| #include<stdio.h> | |
| void animalSign(int birthYear); | |
| int main(void) | |
| { | |
| int birthYear; |
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
| #include<stdio.h> | |
| #define SIZE 15 | |
| int main (void) | |
| { |
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
| $(function() { | |
| $( 'ul.nav li' ).on( 'click', function() { | |
| $( this ).parent().find( 'li.active' ).removeClass( 'active' ); | |
| $( this ).addClass( 'active' ); | |
| }); | |
| }); |
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
| //Michael Porter | |
| //COSC 1430.701 | |
| //Project #2 | |
| //Due: 9 October 2016 | |
| //Change calculating program | |
| import java.util.Scanner; | |
| public class project2 { | |
| public static void main(String[] args) { |
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
| //Michael Porter | |
| //COSC 1430.701 | |
| //Project 3 | |
| //Due October 18th | |
| //Project takes a series of numbers and returns the average | |
| import java.util.Scanner; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.List; |