- 1、本文档共47页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[电脑基础知识]C语言题库1
基本操作题
#includestdio.h
main()
{
int i,j,k,n=0;
for(i=1;i=5;i++)
for(j=1;j=10;j++)
for(k=1;k=10;k++)
if(i*10+j*5+k*1==100)
{n++;printf(i=%d j=%d k=%d\n,i,j,k);
}
printf(n=%d,n);
}
#includestdio.h
main()
{
int a,b,*pa,*pb;
pa=a;pb=b;
scanf(%d,%d,a,b);
*pa=a+b;
*pb=a+b;
printf(a=%d,b=%d\n,a,b);
}
#includestdio.h
main()
{
int x=1,y=0,a=0,b=0;
switch(x)
{case 1: switch(y)
{case 0:a++;break;
case 1:b++;break;
}
case 2:a++;b++;break;
}
printf(a=%d,b=%d\n,a,b);
}
#includestdio.h
main()
{
char str[80];
int i,num;
printf(输入一个字符串:);
gets(str);
num=0;
for(i=0;str[i]!=\0;i++)
if(str[i]==a) num++;
printf(字符串中有%d个字母a\n,num);
}
#includestdio.h
main()
{
int a,b;
for(a=1,b=1;a=100;a++)
{if(b=20) break;
if(b%3==1) {b+=3;continue;}
b-=5;
}
printf(%d\n,a);
}
#includestdio.h
main()
{
char s1[20],s2[20];
int i;
printf(Input a string:\n);
gets(s2);
for(i=0;s2[i]!=\0;i++)
s1[i]=s2[i];
s1[i]=\0;
printf(Output the new string:\n);
printf(%s\n,s1);
}
#includestdio.h
#includemath.h
main()
{
float a,x,x1,e;
printf( a= );
scanf(%f,a);
x=a;
while(1)
{x1=2*x/3+a/(3*x*x);
e=fabs(x1-x);
if(e0.00001)break;
else x=x1;
}
printf(a=%.0f\n,a);
printf(x=%.5f\n,x1);
printf(pow%2.0f,1.0/3=%.5f,a,pow(a,1.0/3));
}
#include stdio.h
main()
{
int a,b,c,t;
printf(输入a,b,c:);
scanf(%d%d%d,a,b,c);
if(ab){t=a;a=b;b=t;}
if(ac){t=a;a=c;c=t;}
if(bc){t=b;b=c;c=t;}
printf(%d %d %d\n,a,b,c);
}
#includestdio.h
main()
{
int m,n,t;
scanf(%d%d,m,n);
t=mn?m:n;
if(t%2!=0)
t+=1;
printf(%d\n,t);
}
#includestdio.h
main()
{
int x=1,y=0,a=0,b=0;
switch(x)
{ case 1:switch(y)
{ case 0:a++;break;
case 1:b++;break;
}
case 2:a++;b++;br
您可能关注的文档
最近下载
- 危大工程辨识清单.docx
- 小榨油厂生产工艺流程图(可修改).pdf
- 地铁施工测量题库2020版.doc
- 2024届安徽省合肥市肥东四中学九级八下英语期末联考试题含答案.doc VIP
- 【期中卷】人教版2021-2022学年九年级英语上学期期中测试卷 (一)含答案与解析.pdf VIP
- 【大单元教学设计】新统编版语文七年级上册第二单元 人间最美是亲情.docx VIP
- 2022-2023学年四川省广元市普通高校对口单招英语自考测试卷(含答案).docx
- 真题2023年9月全国事业单位联考《综合应用能力》试题及答案解析A类.pdf VIP
- NBT10115-2018光伏支架结构设计规程.docx
- 《仙人掌》-美术课件.pptx
文档评论(0)