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
!!! strict | |
!!! XML | |
%html | |
-# Self closing tags | |
%img{:src => "happy.jpg"}/ | |
%div.myclass | |
.myclass1 |
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
function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fish" | |
# Clear earlier bindings, if any | |
bind --erase --all | |
# This is the default binding, i.e. the one used if no other binding matches | |
bind "" self-insert | |
bind \n execute |
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
ruby -e 'C=`stty size`.scan(/\d+/)[1].to_i;S=["2743".to_i(16)].pack("U*");a={};puts "\033[2J";loop{a[rand(C)]=0;a.each{|x,o|;a[x]+=1;print "\033[#{o};#{x}H \033[#{a[x]};#{x}H#{S} \033[0;0H"};$stdout.flush;sleep 0.1}' |
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 <iostream> | |
#include <cstdio> | |
using namespace std; | |
int main (int argc, char const* argv[]) | |
{ | |
// 2x4 | |
int m[2][4]; | |
for(int i=0; i<2; ++i) | |
for(int j=0; j<4; ++j) |
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 <stdio.h> | |
#include <math.h> | |
double a, b; | |
void unesi(int n){ | |
printf("a: "); | |
scanf("%lf", &a); | |
if(n==2){ | |
printf("b: "); |
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 <stdio.h> | |
#include <math.h> | |
int R, S; | |
char m[51][51]; | |
int zaokr(double n){ | |
double t = n-(int)n; | |
return (t<0.5)?(int)n:(int)n+1; | |
} |
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 <iostream> | |
using namespace std; | |
int n, nd, m[100][100]; | |
void ispis(){ | |
cout<<"m[][]:"<<endl; | |
for(int i=0; i<n; ++i){ | |
for(int j=0; j<n; ++j) | |
cout<<m[i][j]<<" "; |
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 <iostream> | |
#include <cstdlib> | |
using namespace std; | |
int m[3][4]; | |
/* | |
X 0 X | |
0 0 0 |
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 <stdio.h> | |
int main(){ | |
int m[25]={0}, // matrica sati, sve nule | |
n, i, j, ta, tb, mmax=1; | |
scanf("%d", &n); | |
for(i=0; i<n ; ++i){ | |
scanf("%d%d", &ta, &tb); | |
for(j=ta; j<=tb; ++j) | |
m[j]++; |
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 <stdio.h> | |
int main(){ | |
int n, P[100], i, snep=0, nnep=0; | |
scanf("%d", &n); | |
if(2 <= n && n <= 100){ printf("2 <= n && n <= 100 !!"); return 1; } | |
for(i=0; i<n; ++i) | |
scanf("%d", &P[i]); | |
printf("Parni brojevi: "); |