C++ 语言特性杂谈与常数优化
仅仅作为参考,不保证完全正确,未完
仅仅作为参考,不保证完全正确,未完
类 (class) 与 结构体 (struct) 12345678910111213141516171819202122232425262728293031#include <iostream>using namespace std;class Person { p...
警告本文有因为初学 C++ 臆想过多导致的很多谬误,待修 字符数组 输出 1234567891011#include <iostream>#include <cstdio>using namespace std;int main(){ char str[...
实际上是借助读入函数的返回值实现的。 1234567891011#include <stdio.h>int main() { int k,sum=0; while (scanf("%d",&k) != EOF) // EOF是读...