c/c++
nkfustKai
这个作者很懒,什么都没留下…
展开
-
Lower case to upper case – An interesting fact
Lower case to upper case – An interesting fact翻译 2016-06-24 13:36:51 · 330 阅读 · 0 评论 -
A C Programming Language Puzzle
A C Programming Language Puzzle翻译 2016-06-24 18:50:19 · 409 阅读 · 0 评论 -
How to find size of array in C/C++ without using sizeof ?
How to find size of array in C/C++ without using sizeof ?翻译 2016-06-24 13:38:06 · 503 阅读 · 0 评论 -
UVA 1368 DNA Consensus String
Problemhttp://write.blog.csdn.net/postlistuva 1368 DNA Consensus String#include<iostream>typedef enum{A=0,C=1,G=2,T=3}e;char DNAChar[4] = {'A','C','G','T'};using namespace std;int main(){ int原创 2016-08-31 17:30:04 · 320 阅读 · 0 评论