为数组动态分配存储空间
#include
#include
int main(void)
{
double *ptd;
int max;
int number;
int i=0;
puts("What is the maximum number of type double entries?");
scanf("%d",&max);
ptd =(double *)mall...
分类:
其他好文 时间:
2014-11-30 23:23:23
阅读次数:
251
1-3 输入和显示puts函数只接受 一个 实参,并且在结尾自动换行2-1运算求商运算符 :除法运算符" / ",如果是两个整数相除结果为整数如果需要保留小数时 必须将其中一个除数转换为浮点数。5/3=1 3/5=0 6.0/4=1.5 (List01)求余运算符 int%int用printf函数....
分类:
编程语言 时间:
2014-11-26 23:58:41
阅读次数:
682
#include #include using namespace std;class A{public: A() { puts("this is A!"); }};class B : A{public: B() { puts("this i...
分类:
其他好文 时间:
2014-11-26 06:34:24
阅读次数:
118
puts("Please input a number between 1 and 100: "); scanf("%d",&Number); printf("Your input number is %d\n",Number); ...
分类:
其他好文 时间:
2014-11-23 18:50:55
阅读次数:
147
=== 分割线,把下面的天书粘帖到a.c文件=========M[16],X=16,W,k;main(){T(system("stty cbreak"));puts(W&1?"WIN":"LOSE");}K[]={2,3,1};s(f,d,i,j,l,P){for(i=4;i--;)for(j=k=...
分类:
其他好文 时间:
2014-11-22 23:05:18
阅读次数:
368
#include<stdio.h>
#include<ctype.h>
intmain(intargc,char**argv)
{
charch;
printf("Enterthewantyouwant:\n");
while((ch=getchar())!=‘#‘)
{
if(ch==‘\n‘)
continue;//改成break的话,直接回车就会跳出循环。
if(islower(ch))
switch(ch)
{
case‘a‘:puts("..
分类:
其他好文 时间:
2014-11-20 23:54:38
阅读次数:
189
2014年11月02日22:39:07 晚间测试int ch[] = {97, 97, 97, 0}; puts(ch); if (strcmp("AAA", ch)) { printf("real?true!"); }
分类:
编程语言 时间:
2014-11-02 23:48:39
阅读次数:
160
#include #include int main( void ){ time_t t = time(0); char tmp[64]; strftime( tmp, sizeof(tmp), "%Y/%m/%d %X %A 本年第%j天 %z",localtime(&t) ); puts( tm...
分类:
编程语言 时间:
2014-10-24 14:15:48
阅读次数:
211
summary: 1: puts "s in #{user_input}" 和puts 's in #{user_input}'不同,前者#{user_input}会输出user_input的值,后者只是输出鸳原样,s in #{user_input} 1 print "Thtring, pl...
分类:
其他好文 时间:
2014-10-22 21:52:30
阅读次数:
140
question: 1: chomp是? 2: first_name.capitalize!后面的感叹号有什么作用? 3: #{first_name} 1 print "What's your first name?" 2 first_name = gets.chomp 3 first_nam...
分类:
其他好文 时间:
2014-10-22 21:38:03
阅读次数:
224