This file contains 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 <cs50.h> | |
#include <stdio.h> | |
int main(void){ | |
printf("type char:"); | |
printf("This is char %c\n\n", GetChar()); | |
printf("type double:"); | |
printf("This is double %f\n\n", GetDouble()); |
This file contains 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
annualInterestRate = 0.2 | |
balance = 320000 | |
# variable for Monthly Interest rate | |
mir = annualInterestRate / 12.0 | |
pb = balance | |
#lower bound | |
lwb = balance /12 |
This file contains 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
/* | |
* ===================================================================================== | |
* | |
* Filename: pyramid.c | |
* | |
* Description: code_marshal | |
* | |
* Version: 1.0 | |
* Created: 02/13/2017 04:00:10 AM | |
* Revision: none |
This file contains 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 <stdlib.h> | |
#include <stdio.h> | |
int main() | |
{ | |
int i, j, t, k,m,n; | |
scanf("%d", &t); | |
for(i=1; i<=t; i++) |
This file contains 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 <stdlib.h> | |
#include <stdio.h> | |
#include <math.h> | |
int main() | |
{ | |
int t,i; | |
scanf("%d", &t); |
This file contains 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 <stdlib.h> | |
#include <stdio.h> | |
int main() | |
{ | |
int t,i; | |
scanf("%d", &t); | |
for(i=1;i<=t;i++) |
This file contains 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
https://www.urionlinejudge.com.br/judge/en/problems/view/1001 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1002 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1003 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1004 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1005 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1006 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1007 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1008 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1009 | |
https://www.urionlinejudge.com.br/judge/en/problems/view/1010 |
This file contains 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
# If you come from bash you might have to change your $PATH. | |
export PATH=$HOME/bin:/home/zoha/anaconda3/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/home/zoha/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="bira" |
This file contains 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
package io.github.zoha131.custombehavioronefinal; | |
import android.annotation.SuppressLint; | |
import android.content.Context; | |
import android.support.design.widget.CoordinatorLayout; | |
import android.support.v7.widget.Toolbar; | |
import android.util.AttributeSet; | |
import android.util.Log; | |
import android.view.View; |
This file contains 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
package learnings; | |
import java.util.*; | |
// Data structure to store graph edges | |
class Edge { | |
int src, dest; | |
public Edge(int src, int dest) { | |
this.src = src; | |
this.dest = dest; |
OlderNewer