c語言上機題庫
A. 急求全國計算機二級考試c語言上機題庫(10年9月份考的),要有題帶答案的
LZ郵箱我就不發了,告訴你網站
http://www.shangxueba.com/share/s23.html
自己去裡面下載吧!
記得加分哦。。。呵呵
B. 計算機C語言 上機題庫誰有嗎
試題通裡面有的
C. 全國計算機二級C語言上機試題
http://hi..com/bluewin100/blog/item/6f75cdb1c6146250092302d1.html
這個網址是南開一百題的一個拷貝版的網址 算是word版本的吧 你自己去弄吧
http://learning.sohu.com/s2005/jisuanji.shtml
是我曾經用過的網站 希望對你有幫助
另外 我曾經回答過好多相關的問題 如果有時間 你可以看看我回答過的題目 其中還有相關的備考手段 對你很有好處的
祝你成功哦 (*^__^*) 嘻嘻……
D. 二級C語言上機考試有題庫嘛
上機考試試題
1、填空題
下列給定程序中,函數fun()的作用是:將字元串tt中的大寫字母都改為對應的小寫字母,其他字元不變。例如,若輸入「Ab,cD」,則輸出「ab,cd」。
試題程序:
# include <stdio.h>
# include <stdio.h>
# include <conio.h>
Char【1】fun(char tt[])
{
int i;
for (i=0;tt[i];i++)
{
if ((tt[i]>=』A』)&&(tt[i]<=【2】))
tt[i]+=32;
}
return(tt);
}
main()
{
char tt[81];
printf (「\nPlease enter a string:」);
gets (tt);
printf (「\nThe result string is: \n%s」,fun(【3】));
}
2、改錯題
下列給定程序中,函數fun()的功能是逐個比較a,b兩個字元串對應位置中的字元,把ASCII值小或相等的字元依次存放到c數組中,形成一個新的字元串。
例如:a中的字元串為fshADfg,b中的字元為sdAEdi,則c中的字元串應為fdAADf。
請改正程序中的錯誤,使它能得到正確的結果。
注意:不要改動main函數,不得增行或刪行,也不得更改程序的結構。
試題程序:
# include <stdio.h>
# include <string.h>
void fun(char *p,char *q,char *c)
{ int k=0;
while(*p‖*q)
/***************found******************/
{ if (*p<=*q)
c[k]=*q;
else c[k]=*p;
if (*p) p++;
if(*q) q++;
/***************found*******************/
k++
}
}
main()
( char a[10]=」fshADfg」,b[10]=」sdAEdi」,c[80]={『\0』};
fun(a,b,c);
printf(「The string a:」); puts(a);
printf(「The string b:」); puts(b);
printf(「The string c:」); puts(c);
}
3、編程題
請編寫函數fun,其功能是將兩個兩位數的正整數a、b合並形成一個整數放在c中。合並的方式是:將a數的十位和個位數依次放在c數的十位和個位數依次放在c數的百位和千位上。
例如,當a=16,b=35,調用該函數後,c=5361。
注意:部分源程序給出如下。
請勿改動主函數main和其他函數中的任何內容,僅在函數fun的花括弧中填入所編寫的若干語名。
試題程序:
# include<stdio.h>
void fun(int a,int b,long *c)
{
}
main()
{
int a,b;
long c;
clrscr();
printf(「Input a,b;」);
scanf(「%d%d」,&a&b);
fun(a,b,&c);
printf(「The result is:%d\n」,c);
}
E. c語言 上機實操題目
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node *next;
};
struct node* create(int n)
{
int i;
struct node *t,*h,*p;
h=t=(struct node*)malloc(sizeof(struct node));
printf("請輸入第1個節點的數據:");
scanf("%d",&(*t).data);
for(i=2;i<=n;i++)
{
p=(struct node*)malloc(sizeof(struct node));
printf("請輸入第%d個節點的數據:",i);
scanf("%d",&(*p).data);
(*t).next=p;
t=p;
}
(*p).next=NULL;
return h;
}
void display(struct node *head)
{
while(head)
{
printf("%d",(*head).data);
if((*head).next)
printf("->");
head=(*head).next;
}
}
void myfree(struct node *head)
{
struct node *p=head;
while(p)
{
head=(*head).next;
free(p);
p=head;
}
}
int main()
{
struct node *head;
head=create(10);
display(head);
myfree(head);
return 0;
}
F. 如何把C語言上機軟體中的題庫提取出來
是計算機等級考試嗎?等級考試上機試題是隨機抽取,只抽一次的,其實監考老師特許的情況下,經過他的設置可以重新抽題的,抽一次包括一套的,你可以在迅雷或者網站上下載一個c語言上機考試軟體的,搜一下很容易就找到了,隨便下載一個,是完整的軟體模擬,跟正式考試基本上一樣,操作步驟和題型都一樣,交卷以後電腦可以自動閱卷得分的,還提醒你那做錯了,給你正確答案的,試一下吧!很容易的