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
" Source a global configuration file if available | |
"if filereadable("/etc/vim/vimrc.local") | |
" source /etc/vim/vimrc.local | |
"endif | |
"""""""""""""""""""""""""""""""""""""Ace""""""""""""""""""""""""""""""""""""" | |
" 一般设定 | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
runtime! debian.vim | |
"set compatible |
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
" Source a global configuration file if available | |
"if filereadable("/etc/vim/vimrc.local") | |
" source /etc/vim/vimrc.local | |
"endif | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Vundle | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle |
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
" Source a global configuration file if available | |
"if filereadable("/etc/vim/vimrc.local") | |
" source /etc/vim/vimrc.local | |
"endif | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Vundle | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle |
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 <stdlib.h> | |
#include <string.h> | |
#include <math.h> | |
void fun(FILE *stdin) { | |
char str[20], tmp[20]; | |
int sum, len, i, idx, cnt; | |
int a1[10], num1 = 0, num2 = 0, ans1 = 0; | |
double a2[10], ans2 = 0; |
NewerOlder