指標知識複習

2021-08-02 18:37:08 字數 1402 閱讀 2251

基礎1

輸入年和天數,輸出對應的年月日

樣例輸入

2000 61

樣例輸出

2000-3-1

#include

void getdata(int

*year,int

*data)

void count(int year,int data,int

*month,int

*day)

,}; int find = 0;

int i;

if(year%4 == 0&&year%100!=0||year%400== 0)

find = 1;

for(i = 1;data-num[find][i]>= 0;i++)

data -= num[find][i];

*month = i;

*day = data;

}void printdata(int year,int month,int day)

int main()

基礎2

實數的截斷取整,去掉小數的前導0,只取整數部分,否則輸出0

#include

int main()

printf("\n");

return

0;}

基礎3

將十進位制數轉換為r進製

#include

#include

void dtor(int n,int r,char *str)

for(i = k-1; i >= 0; i--)

printf("%c",str[i]);

printf("\n");

}int main()

基礎4

輸出字串的最後三個字元

#include

#include

int main()

基礎5
#include

void count(int n)

sscanf(j,"%lf",&d);

sum += d;

}printf("%.1lf\n",sum);

}int main()

基礎6

動態申請乙個一維陣列。

#include

#include

int main()

關於指標的複習知識點

乙個變數的位址稱為該變數的指標 如果有乙個變數專門用來存放另乙個變數的位址 即指標 則稱它為指標變數 定義指標變數的一般形式 基型別 指標變數名 float pointer 1 char pointer 2 指標變數的賦值 int i,j int pointer 1,pointer 2 pointe...

C 知識點複習 智慧型指標分析

智慧型指標引入為了解決的問題 記憶體洩漏 示例 include include using namespace std class test intvalue test intmain return0 智慧型指標示例 include include using namespace std class...

php知識複習

1,strcmp 根據ascall碼比較兩個數的大小,小寫的比大寫大,相等返回0,大的返回1,小的返回 1。2,抽象類 那麼什麼叫抽象方法呢?在所有的普通方法上面都會有乙個 這個表示方法體,有方法體的方法一定可以被物件直接使用。而抽象方法,是指沒有方法體的方法,同時抽象方法還必須使用關鍵字abstr...